# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.81"
name = "aion_verify"
version = "3.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure-Rust proof stack with no dependencies and no external solver. Tier 4 exhaustively checks a predicate over a bounded domain; tier 5 proves properties over UNBOUNDED, multi-variable domains via interval abstract interpretation, branch-and-bound refinement, and affine relational reasoning, with function contracts. Also finds faults you never wrote a predicate for -- index-out-of-bounds, overflow, unwrap, division by zero -- by exhaustive execution (std) or symbolically (profile-independent). Plus a tamper-evident SHA-512 hash-chain ledger and post-quantum (hash-based WOTS/Merkle) signatures. no_std, no unsafe."
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/NubbyNubkins/aion_verify"
[features]
default = []
std = []
[lib]
name = "aion_verify"
path = "src/lib.rs"
[[test]]
name = "ledger_proofs"
path = "tests/ledger_proofs.rs"
[[test]]
name = "mss_proofs"
path = "tests/mss_proofs.rs"
[[test]]
name = "pqsig_proofs"
path = "tests/pqsig_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)"]