[package]
edition = "2024"
rust-version = "1.85"
name = "proofframe"
version = "0.6.0"
build = false
include = [
"/src/**",
"/tests/*.rs",
"/tests/support/**",
"/docs/testing.md",
"/examples/**",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/README-crates.md",
"/CHANGELOG.md",
"/LICENSE",
"/SECURITY.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-native Arrow contracts, exact checks, fingerprints, and verifiable evidence"
homepage = "https://github.com/emirhuseynrmx/proofframe"
documentation = "https://docs.rs/proofframe"
readme = "README-crates.md"
keywords = [
"arrow",
"data-quality",
"validation",
"parquet",
"evidence",
]
categories = [
"data-structures",
"development-tools",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/emirhuseynrmx/proofframe"
[features]
default = []
fuzzing = []
python = [
"dep:pyo3",
"arrow/pyarrow",
]
[lib]
name = "proofframe"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "allocation_contract"
path = "tests/allocation_contract.rs"
[[test]]
name = "contract_compile"
path = "tests/contract_compile.rs"
[[test]]
name = "dataset_contract"
path = "tests/dataset_contract.rs"
[[test]]
name = "diff_corruption"
path = "tests/diff_corruption.rs"
[[test]]
name = "distinct_spill"
path = "tests/distinct_spill.rs"
[[test]]
name = "evidence_receipt"
path = "tests/evidence_receipt.rs"
[[test]]
name = "execution_contract"
path = "tests/execution_contract.rs"
[[test]]
name = "fingerprint_versions"
path = "tests/fingerprint_versions.rs"
[[test]]
name = "fuzz_surface"
path = "tests/fuzz_surface.rs"
[[test]]
name = "leakage_contract"
path = "tests/leakage_contract.rs"
[[test]]
name = "partition_contract"
path = "tests/partition_contract.rs"
[[test]]
name = "partition_manifest"
path = "tests/partition_manifest.rs"
[[test]]
name = "reference_contract"
path = "tests/reference_contract.rs"
[[test]]
name = "resource_limits"
path = "tests/resource_limits.rs"
[dependencies.ahash]
version = "0.8.12"
[dependencies.arrow]
version = "=59.1.0"
features = ["ipc"]
default-features = false
[dependencies.base64]
version = "0.22.1"
[dependencies.blake3]
version = "1.8.2"
[dependencies.chrono]
version = "0.4.42"
features = ["std"]
default-features = false
[dependencies.ed25519-dalek]
version = "3.0.0"
[dependencies.getrandom]
version = "0.4.3"
[dependencies.pyo3]
version = "0.29.0"
features = ["abi3-py310"]
optional = true
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
features = ["arbitrary_precision"]
[dependencies.serde_json_canonicalizer]
version = "0.3.2"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "2.0.17"
[dev-dependencies.proptest]
version = "1.9.0"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true