Skip to main content

max / makenotwork

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