[package]
edition = "2021"
name = "certeza"
version = "0.1.1"
authors = ["Pragmatic AI Labs Research Division"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A scientific experiment into realistic provability with Rust - asymptotic test effectiveness framework"
documentation = "https://docs.rs/certeza"
readme = "README.md"
keywords = [
"testing",
"property-based",
"mutation",
"formal-verification",
"quality",
]
categories = [
"development-tools::testing",
"development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/paiml/certeza"
[profile.bench]
lto = true
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[profile.test]
opt-level = 1
[lib]
name = "certeza"
path = "src/lib.rs"
[[test]]
name = "chaos_tests"
path = "tests/chaos_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "truenovec_benchmarks"
path = "benches/truenovec_benchmarks.rs"
[[bench]]
name = "vec_benchmarks"
path = "benches/vec_benchmarks.rs"
harness = false
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sysinfo]
version = "0.30"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"
[features]
chaos-basic = []
chaos-byzantine = ["chaos-basic"]
chaos-full = [
"chaos-network",
"chaos-byzantine",
]
chaos-network = ["chaos-basic"]
default = []
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]