From 363fbc6e98f832471a17a10ec18e8823df6a2ed5 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 16 Apr 2026 21:31:57 +0800 Subject: Initialize Rust project with billing calculation functionality --- Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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"] } -- cgit