15 lines
516 B
TOML
15 lines
516 B
TOML
[package]
|
|
name = "nzrdhcp"
|
|
description = "Unicast-only static DHCP server for nazrin"
|
|
version = "0.1.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"
|