aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-13 20:00:11 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-13 20:01:03 +0800
commit6c165d967df4fdb270c94da50632eeb4caa1b472 (patch)
treea95fdceb35b6191d155b0e0d0cdef6b66aba3f8c /Cargo.toml
parent5e7d1968e94bf39d369de0e6ef98cf383cfd3d6f (diff)
Update mingling dependency and remove async runtimeHEADmaster
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 8 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f962729..951a0da 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "cobill" # chaos_billing
+name = "cobill" # chaos_billing
version = "0.1.0"
edition = "2024"
@@ -8,14 +8,17 @@ name = "cobill"
path = "src/main.rs"
[dependencies]
-mingling = { path = "../mingling/mingling", features = ["full", "debug"] }
-tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread" ] }
+mingling = { path = "../mingling/mingling", features = [
+ "parser",
+ "general_renderer",
+ "comp",
+] }
uuid = { version = "1", features = ["v4"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.33"
strip-ansi-escapes = "0.2.1"
-thiserror = "1.0.69"
+thiserror = "2.0.18"
dirs = "6"
[build-dependencies]
-mingling = { path = "../mingling/mingling", features = ["comp"] }
+mingling = { path = "../mingling/mingling", features = ["builds", "comp"] }