26 lines
539 B
TOML
26 lines
539 B
TOML
|
|
[package]
|
||
|
|
name = "nix-ota-server"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "nix-ota-server"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
nix-ota-common = { path = "../common" }
|
||
|
|
anyhow.workspace = true
|
||
|
|
serde.workspace = true
|
||
|
|
serde_json.workspace = true
|
||
|
|
tokio.workspace = true
|
||
|
|
tracing.workspace = true
|
||
|
|
tracing-subscriber.workspace = true
|
||
|
|
clap.workspace = true
|
||
|
|
axum.workspace = true
|
||
|
|
tower.workspace = true
|
||
|
|
tower-http.workspace = true
|
||
|
|
sqlx.workspace = true
|
||
|
|
time.workspace = true
|
||
|
|
ulid.workspace = true
|