26382a7ac6
CI / Clippy (push) Failing after 15m13s
CI / Test (ubuntu-latest) (push) Failing after 16m1s
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (no embeddings / no ORT) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Cookbook (Node) (push) Has been cancelled
CI / Pi Extension (Node) (push) Has been cancelled
CI / Rust SDK (lean-ctx-client) (push) Has been cancelled
CI / Embed SDK (lean-ctx-sdk) (push) Has been cancelled
CI / Python SDK (leanctx) (push) Has been cancelled
CI / Hermes Plugin (Python) (push) Has been cancelled
CI / SDK Conformance Matrix (push) Has been cancelled
CI / Coverage (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled
CI / Adversarial Safety (push) Has been cancelled
CI / Benchmarks (push) Has been cancelled
CI / Output-Quality Gate (eval A/B) (push) Has been cancelled
CI / Documentation (push) Has been cancelled
CI / CI Green (push) Has been cancelled
JetBrains Plugin / Actionlint (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (rust) (push) Has been cancelled
JetBrains Plugin / Validation (push) Has been cancelled
JetBrains Plugin / Build (push) Has been cancelled
JetBrains Plugin / Test (push) Has been cancelled
Security Check / Security Scan (push) Has been cancelled
24 lines
838 B
TOML
24 lines
838 B
TOML
[package]
|
|
name = "leanctx-verify"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Standalone offline verifier for LeanCTX evidence bundles (evidence-bundle-v1). No LeanCTX installation, no network access required."
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/yvgude/lean-ctx"
|
|
|
|
# Deliberately NOT a member of the engine workspace and NOT depending on
|
|
# lean-ctx: this is an independent implementation of the published contract
|
|
# (docs/contracts/evidence-bundle-v1.md + OCP Part 4), so a verification
|
|
# PASS means the spec holds — not that two copies of the same code agree.
|
|
|
|
[dependencies]
|
|
ed25519-dalek = { version = "2", default-features = false }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
zip = { version = "8", default-features = false }
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|