[package]
edition = "2021"
rust-version = "1.86"
name = "wickra-verify-cli"
version = "0.1.0"
authors = ["wickra-lib"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference command-line verifier over wickra-verify-core: recompute a claimed backtest report and confirm or refute it, exiting non-zero on a refuted claim for use in CI pipelines."
homepage = "https://wickra.org"
readme = "README.md"
keywords = [
"trading",
"backtest",
"verify",
"determinism",
"finance",
]
categories = [
"finance",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/wickra-lib/wickra-verify"
[package.metadata.docs.rs]
all-features = true
[[bin]]
name = "wickra-verify"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["float_roundtrip"]
[dependencies.wickra-verify-core]
version = "0.1.0"
[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"