[package]
edition = "2024"
name = "trellis-testing"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Companion testing support for Trellis graph invariants."
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/pablof7z/trellis"
[features]
default = []
fuzz = []
insta = ["dep:insta"]
proptest = ["dep:proptest"]
serde = ["trellis-core/serde"]
trybuild = []
[lib]
name = "trellis_testing"
path = "src/lib.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "harness"
path = "tests/harness.rs"
[[test]]
name = "output_audit_ledger"
path = "tests/output_audit_ledger.rs"
[[test]]
name = "proptest_helpers"
path = "tests/proptest_helpers.rs"
[[test]]
name = "release_gate"
path = "tests/release_gate.rs"
[[test]]
name = "resource_host_ledger"
path = "tests/resource_host_ledger.rs"
[dependencies.insta]
version = "1"
optional = true
[dependencies.proptest]
version = "1"
optional = true
[dependencies.trellis-core]
version = "0.1.2"
[dev-dependencies.trybuild]
version = "1"