blob: f962729353786ace908951013d65279ba820d4c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[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", "debug"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread" ] }
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"
dirs = "6"
[build-dependencies]
mingling = { path = "../mingling/mingling", features = ["comp"] }
|