[package]
edition = "2024"
name = "rvtest"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Next Level Testing Library for Rust — BDD specs, property-based testing, parametrized tests, rich reporting, and code coverage. Just a library, not a framework."
homepage = "https://github.com/reasvyn/rvtest"
documentation = "https://docs.rs/rvtest"
readme = false
license = "MIT"
repository = "https://github.com/reasvyn/rvtest"
resolver = "2"
[features]
default = []
macros = ["rvtest-macros"]
[lib]
name = "rvtest"
path = "src/lib.rs"
[[test]]
name = "arch"
path = "tests/arch.rs"
[[test]]
name = "assert"
path = "tests/assert.rs"
[[test]]
name = "capture"
path = "tests/capture.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "mock"
path = "tests/mock.rs"
[[test]]
name = "param"
path = "tests/param.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "runner"
path = "tests/runner.rs"
[[test]]
name = "snapshot"
path = "tests/snapshot.rs"
[[test]]
name = "spec"
path = "tests/spec.rs"
[dependencies.libc]
version = "0.2.186"
[dependencies.notify]
version = "8.2.0"
[dependencies.rand]
version = "0.10.1"
[dependencies.rvtest-macros]
version = "0.3.0"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.similar]
version = "2.7.0"
[dependencies.toml]
version = "0.8"