[package]
edition = "2021"
rust-version = "1.75.0"
name = "assurance-runtime"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed deployability and certification surface crate with bounded readiness profiles; not an orchestration runtime"
readme = "README.md"
license = "MIT"
[lib]
name = "assurance_runtime"
path = "src/lib.rs"
[[test]]
name = "fixture_conformance"
path = "tests/fixture_conformance.rs"
[[test]]
name = "profile_p4_example_roundtrip"
path = "tests/profile_p4_example_roundtrip.rs"
[[test]]
name = "profile_p4_fixture_conformance"
path = "tests/profile_p4_fixture_conformance.rs"
[[test]]
name = "profile_p5_example_roundtrip"
path = "tests/profile_p5_example_roundtrip.rs"
[[test]]
name = "profile_p5_fixture_conformance"
path = "tests/profile_p5_fixture_conformance.rs"
[[test]]
name = "proptest_builders"
path = "tests/proptest_builders.rs"
[[test]]
name = "serde_roundtrip"
path = "tests/serde_roundtrip.rs"
[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"
[dependencies.schemars]
version = "0.8.22"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde_json]
version = "1.0.149"
[lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.expect_used]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"