[package] name = "libtest-with" version = "0.8.1-3" authors = ["Lukas Kalbertodt ", "Antonio Yang "] edition = "2021" rust-version = "1.74.0" # due to clap v4.5.23 description = """ A slightly customized version of libtest-mimic, such that it can be easier create a test runner for test-with """ documentation = "https://docs.rs/libtest-with" repository = "https://github.com/yanganto/libtest-with" license = "MIT/Apache-2.0" keywords = ["libtest", "test", "built-in", "framework", "harness"] categories = ["development-tools::testing", "development-tools::build-utils"] readme = "README.md" exclude = [".github"] [dependencies] clap = { version = "4.0.8", features = ["derive"] } escape8259 = "0.5.2" anstream = "0.6.14" anstyle = "1.0.7" reqwest = { version = "0.11", features = ["blocking"], optional = true } ping = { version = "0.5", optional = true } sysinfo = { version = "0.33", optional = true } byte-unit = { version = "5.1", optional = true } num_cpus = { version = "1.16", optional = true } which = { version = "7.0", optional = true } chrono = { version = "0.4", optional = true } [target.'cfg(not(target_os = "windows"))'.dependencies] uzers = { version = "0.12", optional = true } [dev-dependencies] fastrand = "2.0.1" pretty_assertions = "1.4" [features] default = [] net = ["http", "icmp"] http = ["reqwest"] icmp = ["ping"] resource = ["sysinfo", "byte-unit", "num_cpus"] user = ["uzers"] executable = ["which"] timezone = ["chrono"]