[package]
edition = "2024"
rust-version = "1.88"
name = "proofborne-core"
version = "0.1.0"
authors = ["Proofborne contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Versioned contracts, events, provider types, and proof graph for Proofborne"
homepage = "https://github.com/koopmannleon19977-cmyk/proofborne"
readme = "README.md"
keywords = [
"coding-agent",
"ai",
"verification",
"developer-tools",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/koopmannleon19977-cmyk/proofborne"
resolver = "2"
[lib]
name = "proofborne_core"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.8.2"
[dependencies.chrono]
version = "0.4.45"
features = ["serde"]
[dependencies.hex]
version = "0.4.3"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1.20.0"
features = [
"serde",
"v4",
"v7",
]
[dev-dependencies.proptest]
version = "1.11.0"
[lints.clippy]
default_trait_access = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
unnecessary_literal_bound = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"