[package]
edition = "2021"
rust-version = "1.86"
name = "wickra-proof-core"
version = "0.1.2"
authors = ["wickra-lib"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic Proof-of-Backtest core: fold a (spec, data) pair into a wickra-backtest report and a canonical blake3 hash reproducible byte-for-byte across ten languages."
homepage = "https://wickra.org"
readme = "README.md"
keywords = [
"trading",
"backtest",
"proof",
"determinism",
"finance",
]
categories = [
"finance",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wickra-lib/wickra-proof"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "wickra_proof_core"
path = "src/lib.rs"
[[test]]
name = "canonical"
path = "tests/canonical.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "proptest_invariants"
path = "tests/proptest_invariants.rs"
[[test]]
name = "prove_verify"
path = "tests/prove_verify.rs"
[dependencies.blake3]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1"
[dependencies.wickra-backtest-core]
version = "=0.1.4"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"