[package]
edition = "2021"
rust-version = "1.75.0"
name = "spec-execution"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed spec and proof surface crate with bounded generated-artifact evaluators; not a compiler runtime"
readme = "README.md"
license = "MIT"
[lib]
name = "spec_execution"
path = "src/lib.rs"
[[test]]
name = "generated_artifacts_and_veto_slice"
path = "tests/generated_artifacts_and_veto_slice.rs"
[[test]]
name = "property_contracts"
path = "tests/property_contracts.rs"
[[test]]
name = "spec_to_schema_slice"
path = "tests/spec_to_schema_slice.rs"
[dependencies.schemars]
version = "0.8.22"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.stack-ids]
version = "0.1.1"
[dependencies.tracing]
version = "0.1.44"
[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"