[package] name = "sys-info-collect" version = "0.1.0" edition = "2021" categories = ["asynchronous", "command-line-utilities", "network-programming"] description = "fetch system infos" keywords = ["sysinfo"] authors = ["Gongzhengyang "] license = "MIT OR Apache-2.0" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1", features = ["full"]} tracing = "0.1" serde_json = "1" serde = { version = "1.0", features = ["derive"] } sysinfo = { version = "0.28.4", features = ["serde"]} chrono = "0.4" notify = { version = "5", features = ["serde"]} regex = "1" anyhow = "1.0.71" cfg-if = "1.0" clap = { version = "4", features = ["derive"] } [target.'cfg(unix)'.dependencies] pnet_datalink = "0.33.0" [target.'cfg(windows)'.dependencies] ipconfig = "0.3"