datatest-stable 0.3.2

Data-driven tests that work on stable Rust
Documentation
[package]
name = "datatest-stable"
version = "0.3.2"
description = "Data-driven tests that work on stable Rust"
repository = "https://github.com/nextest-rs/datatest-stable"
license = "MIT OR Apache-2.0"
publish = true
readme = "README.md"
edition = "2021"
categories = ["development-tools::testing"]
keywords = ["datatest", "data-driven-tests", "test-harness"]
rust-version = "1.72"

[badges]
maintenance = { status = "passively-maintained" }

[package.metadata.cargo-sync-rdme.badge.badges]
maintenance = true
license = true
crates-io = true
docs-rs = true
rust-version = true

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }

[dependencies]
camino = "1.1.9"
fancy-regex = "0.14.0"
include_dir = { version = "0.7.4", optional = true }
libtest-mimic = "0.8.1"
walkdir = "2.5.0"

[dev-dependencies]
trybuild = "1.0.101"

[target.'cfg(unix)'.dev-dependencies]
camino-tempfile = "1.1.1"
fs_extra = "1.3.0"

[[test]]
name = "example"
harness = false

[[test]]
name = "integration"
harness = true

[features]
include-dir = ["dep:include_dir"]