[package] name = "ifstat-rs" version = "3.0.0" authors = ["spezifisch "] edition = "2021" description = "A tool to report network interface statistics." repository = "https://github.com/spezifisch/ifstat-rs" license = "MIT" build = "build.rs" [dependencies] tokio = { version = "1", features = ["full"] } regex = "1" clap = { version = "4.5", features = ["derive"] } lazy_static = "1.5" log = "0.4.22" env_logger = "0.11.5" serde = { version = "1.0.204", features = ["derive"] } serde_json = "1.0.122" os_pipe = "1.2.1" indexmap = "2.3.0" libc = "0.2.155" [target.'cfg(windows)'.dependencies] windows = { version = "0.58.0", features = [ "Win32_Foundation", "Win32_Networking", "Win32_NetworkManagement_Ndis", "Win32_Networking_WinSock", "Win32_NetworkManagement_IpHelper", ] } widestring = "1.1" [build-dependencies] vergen = { version = "8.3.2", features = [ "build", "cargo", "git", "gitcl", "rustc", ] } anyhow = "1.0.86" [dev-dependencies] assert_cmd = "2.0.15" predicates = "3.1.2" tempfile = "3.11.0"