aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-16 21:31:57 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-16 21:31:57 +0800
commit363fbc6e98f832471a17a10ec18e8823df6a2ed5 (patch)
tree98f71ab1796c1a9c1df411eee5174dd92001ef94 /Cargo.toml
Initialize Rust project with billing calculation functionality
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..0d58106
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,22 @@
+[package]
+name = "cobill" # chaos_billing
+version = "0.1.0"
+edition = "2024"
+
+[[bin]]
+name = "cobill"
+path = "src/main.rs"
+
+[dependencies]
+mingling = { path = "../mingling/mingling", features = ["full"] }
+
+tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread" ] }
+
+uuid = { version = "1", features = ["v4"] }
+
+serde = { version = "1", features = ["derive"] }
+
+thiserror = "1.0.69"
+
+[build-dependencies]
+mingling = { path = "../mingling/mingling", features = ["comp"] }