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.
20 lines
411 B
TOML
20 lines
411 B
TOML
[package]
|
|
name = "nzr-virt"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tracing = "0.1"
|
|
thiserror = "1"
|
|
tokio = { version = "1", features = ["process"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
quick-xml = { version = "0.36", features = ["serialize"] }
|
|
serde_with = "2"
|
|
uuid = { version = "1.10", features = ["v4", "fast-rng"] }
|
|
|
|
virt = "0.4"
|
|
|
|
nzr-api = { path = "../nzr-api" }
|
|
|
|
tempfile = "3"
|