nazrin/nzrdhcp/Cargo.toml

16 lines
516 B
TOML
Raw Normal View History

[package]
name = "nzrdhcp"
description = "Unicast-only static DHCP server for nazrin"
2024-08-16 04:22:40 +00:00
version = "0.9.0"
edition = "2021"
[dependencies]
dhcproto = { version = "0.12.0", features = ["serde"] }
serde = { version = "1.0.204", features = ["derive"] }
tokio = { version = "1.39.2", features = ["rt-multi-thread", "net", "macros"] }
nzr-api = { path = "../nzr-api" }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.18"
moka = { version = "0.12.8", features = ["future"] }
anyhow = "1.0.86"