[package]
edition = "2021"
rust-version = "1.70"
name = "aion_verify"
version = "3.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A two-tier proof engine, pure Rust: tier 4 checks a predicate against EVERY input in a bounded domain (exhaustive); tier 5 proves properties over UNBOUNDED, multi-variable domains (all of u64) via interval abstract interpretation, including function CONTRACTS (precond -> postcond) — Proven / Refuted-with-witness / honest Unknown, never a false result. no_std, no unsafe, no external solver. A first-party alternative to symbolic model checkers like Kani."
documentation = "https://docs.rs/aion_verify"
readme = "README.md"
keywords = [
"verification",
"proof",
"property-testing",
"no-std",
"testing",
]
categories = [
"development-tools::testing",
"no-std",
"algorithms",
]
license = "MPL-2.0"
repository = "https://github.com/MattGelfman/aion_verify"
[lib]
name = "aion_verify"
path = "src/lib.rs"
[[test]]
name = "ledger_proofs"
path = "tests/ledger_proofs.rs"
[[test]]
name = "self_audit"
path = "tests/self_audit.rs"
[[test]]
name = "symbolic_proofs"
path = "tests/symbolic_proofs.rs"
[dependencies]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]