aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-15 23:52:12 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-15 23:52:12 +0800
commitaae29170dc7ae7a8976699c4d1f7011f9f238a06 (patch)
treeb15e73d4b73b23ed41df555f962cbcdfd2b254ad /Cargo.toml
parentde448a04dc594f0938210abaa12de0e168f5741a (diff)
Remove thiserror dependency and implement error types manually
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 6 insertions, 2 deletions
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"