From aae29170dc7ae7a8976699c4d1f7011f9f238a06 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 15 May 2026 23:52:12 +0800 Subject: Remove thiserror dependency and implement error types manually --- mingling_core/src/program/error.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'mingling_core/src/program/error.rs') diff --git a/mingling_core/src/program/error.rs b/mingling_core/src/program/error.rs index a6874cf..03e9af6 100644 --- a/mingling_core/src/program/error.rs +++ b/mingling_core/src/program/error.rs @@ -1,9 +1,7 @@ use std::any::Any; use std::fmt; -use thiserror::Error; /// Error type returned when a panic occurs during execution. -#[derive(Error)] pub struct ProgramPanic { pub payload: Box, } -- cgit