dhcpv6stateless/Cargo.toml

18 lines
422 B
TOML
Raw Normal View History

2024-08-22 21:43:29 +02:00
[package]
name = "dhcpv6stateless"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-08-24 15:17:47 +02:00
anyhow = "1.0.86"
2024-08-24 14:48:26 +02:00
clap = { version = "4.5.16", features = ["derive"] }
2024-08-22 21:43:29 +02:00
dhcproto = "0.12.0"
2024-08-24 18:01:55 +02:00
env_logger = "0.11.5"
2024-08-22 21:43:29 +02:00
hex = "0.4.3"
2024-08-24 14:17:01 +02:00
ipnetwork = "0.20.0"
2024-08-24 18:01:55 +02:00
log = "0.4.22"
2024-08-24 14:17:01 +02:00
pnet = "0.35.0"
2024-08-24 19:03:13 +02:00
serde = { version = "1.0.209", features = ["derive"] }
serde_yaml = "0.9.34"
2024-08-22 21:43:29 +02:00
tokio = { version = "1.39.3", features = ["macros", "net", "rt-multi-thread"] }