[package]
edition = "2021"
rust-version = "1.74.0"
name = "libtest-with"
version = "0.8.1-13"
authors = [
"Lukas Kalbertodt <lukas.kalbertodt@gmail.com>",
"Antonio Yang <yanganto>",
]
exclude = [".github"]
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"
readme = "README.md"
keywords = [
"libtest",
"test",
"built-in",
"framework",
"harness",
]
categories = [
"development-tools::testing",
"development-tools::build-utils",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/yanganto/libtest-with"
[dependencies.anstream]
version = "0.6.14"
[dependencies.anstyle]
version = "1.0.7"
[dependencies.byte-unit]
version = "5.1"
optional = true
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.clap]
version = "4.0.8"
features = ["derive"]
[dependencies.escape8259]
version = "0.5.2"
[dependencies.num_cpus]
version = "1.16"
optional = true
[dependencies.ping]
version = "0.7.1-beta"
optional = true
[dependencies.reqwest]
version = "0.13"
features = ["blocking"]
optional = true
[dependencies.sysinfo]
version = "0.38"
optional = true
[dependencies.which]
version = "8.0"
optional = true
[dev-dependencies.fastrand]
version = "2.0.1"
[dev-dependencies.pretty_assertions]
version = "1.4"
[features]
default = []
executable = ["which"]
http = ["reqwest"]
icmp = ["ping"]
net = [
"http",
"icmp",
]
resource = [
"sysinfo",
"byte-unit",
"num_cpus",
]
timezone = ["chrono"]
user = ["uzers"]
[target."cfg(not(target_os = \"windows\"))".dependencies.uzers]
version = "0.12"
optional = true