Skip to main content

max / makenotwork

1.1 KB · 38 lines History Blame Raw
1 [package]
2 name = "sando-daemon"
3 version = "0.2.4"
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 ops-core = { path = "../../shared/ops-core" }
15 ops-status = { path = "../../shared/ops-status" }
16 ops-exec = { path = "../../shared/ops-exec" }
17 async-trait = "0.1.83"
18 serde = { version = "1.0.228", features = ["derive"] }
19 serde_json = "1"
20 toml = "1.1"
21 sqlx = { version = "0.9", features = ["runtime-tokio", "sqlite", "postgres", "chrono", "migrate"] }
22 tracing = "0.1.44"
23 tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
24 anyhow = "1.0.102"
25 thiserror = "2.0.18"
26 chrono = { version = "0.4", features = ["serde"] }
27 semver = { version = "1.0", features = ["serde"] }
28 sha2 = "0.11"
29
30 [dev-dependencies]
31 tempfile = "3.20"
32 tower = { version = "0.5", features = ["util"] }
33 http-body-util = "0.1"
34 reqwest = { version = "0.13", default-features = false, features = ["json", "rustls"] }
35
36 [lints]
37 workspace = true
38