1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
[package]
name = "mozim"
version = "0.2.5"
description = "DHCP Client Library"
license = "Apache-2.0"
homepage = "https://github.com/nispor/mozim"
edition = "2021"
[lib]
name = "mozim"
path = "src/lib.rs"
[dependencies]
rand = { version = "0.8.5", default-features = false }
libc = "0.2.132"
byteorder = "1.4.3"
dhcproto = "0.9.0"
log = "0.4.17"
etherparse = "0.13.0"
nix = { version = "0.27.0", features = ["poll", "time", "event"] }
nispor = "1.2.17"
futures = { version = "0.3", default-features = false, features = ["std"] }
[dev-dependencies]
tokio = { version = "1.19", features = ["macros", "rt"] }
env_logger = "0.11.0"
|