Skip to main content

max / makenotwork

782 B · 25 lines History Blame Raw
1 [package]
2 name = "sando-daemon"
3 version = "0.1.0"
4 edition = "2024"
5 license = "MIT"
6
7 [[bin]]
8 name = "sandod"
9 path = "src/main.rs"
10
11 [dependencies]
12 axum = { version = "0.8.8", features = ["macros", "ws"] }
13 tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread", "net", "signal", "fs", "process"] }
14 serde = { version = "1.0.228", features = ["derive"] }
15 serde_json = "1"
16 toml = "0.8"
17 sqlx = { version = "0.8.6", features = ["runtime-tokio", "sqlite", "postgres", "chrono", "migrate"] }
18 tracing = "0.1.44"
19 tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
20 metrics = "0.24"
21 metrics-exporter-prometheus = { version = "0.18.1", default-features = false }
22 anyhow = "1.0.102"
23 thiserror = "2.0.18"
24 chrono = { version = "0.4", features = ["serde"] }
25