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 --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 916fc3b..8037fd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,20 +14,24 @@ exclude = [ [workspace.dependencies] just_fmt = "0.1.2" +just_template = "0.1.3" once_cell = "1.21.4" -thiserror = "2" + serde = { version = "1.0", features = ["derive"] } serde_json = "1" serde_yaml = "0.9" toml = "1.1.2" ron = "0.12.1" + dirs = "6" + syn = { version = "2.0", features = ["full", "visit-mut"] } quote = "1.0" proc-macro2 = "1.0" + colored = "3.1.1" tokio = { version = "1", features = ["full"] } -just_template = "0.1.3" + log = "0.4" env_logger = "0.11" -- cgit