snow flurry
6da77159b1
Main changes: * Use diesel instead of sled * Split libvirt components into new crate, nzr-virt * Start moving toward network-based cloud-init To facilitate the latter, nzrdhcp is an added unicast-only DHCP server, intended to be used behind a DHCP relay.
18 lines
534 B
TOML
18 lines
534 B
TOML
[package]
|
|
name = "nzr-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
figment = { version = "0.10.8", features = ["json", "toml", "env"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
tarpc = { version = "0.34", features = ["tokio1", "unix"] }
|
|
tokio = { version = "1.0", features = ["macros"] }
|
|
uuid = { version = "1.2.2", features = ["serde"] }
|
|
hickory-proto = { version = "0.24", features = ["serde-config"] }
|
|
log = "0.4.17"
|
|
sqlx = "0.8"
|
|
diesel = { version = "2.2", optional = true }
|
|
|
|
[features]
|
|
diesel = ["dep:diesel"]
|