[package]
edition = "2021"
rust-version = "1.88.0"
name = "test-with-derive"
version = "0.16.1"
authors = ["Antonio Yang <yanganto@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A library that helps you run tests with conditions"
readme = false
keywords = [
"testing",
"condition",
"toggle",
"integration",
"ignore",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/yanganto/test-with"
[features]
default = [
"net",
"resource",
"user",
"executable",
"timezone",
]
executable = ["which"]
http = ["reqwest"]
icmp = ["ping"]
ign-msg = []
net = [
"http",
"icmp",
]
resource = [
"sysinfo",
"byte-unit",
"num_cpus",
]
runtime = []
timezone = ["chrono"]
user = ["uzers"]
[lib]
name = "test_with_derive"
path = "src/lib.rs"
proc-macro = true
[dependencies.byte-unit]
version = "5.0"
optional = true
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.num_cpus]
version = "1.13"
optional = true
[dependencies.ping]
version = "0.7.1"
optional = true
[dependencies.proc-macro-error2]
version = "2.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = ["blocking"]
optional = true
[dependencies.syn]
version = "2.0"
features = ["full"]
[dependencies.sysinfo]
version = "0.38"
optional = true
[dependencies.which]
version = "8.0"
optional = true
[target.'cfg(not(target_os = "windows"))'.dependencies.uzers]
version = "0.11.3"
optional = true