[package]
edition = "2024"
name = "test-r"
version = "3.0.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test framework for Rust"
homepage = "https://github.com/vigoo/test-r"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/vigoo/test-r"
[features]
default = ["tokio"]
tokio = [
"dep:tokio",
"test-r-core/tokio",
]
[lib]
name = "test_r"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.ctor]
version = "0.4"
[dependencies.test-r-core]
version = "8.0.1"
default-features = false
[dependencies.test-r-macro]
version = "1.4.7"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
optional = true
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serial_test]
version = "3"