21 lines
411 B
TOML
21 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"
|