[package]
name = "opentrustprotocol"
version = "3.0.0"
edition = "2021"
authors = ["OpenTrust Protocol Team <contact@opentrustprotocol.com>"]
description = "🦀 Official Rust SDK for OpenTrust Protocol - The mathematical embodiment of trust itself. Features neutrosophic judgments, fusion operators, OTP mappers, REVOLUTIONARY Conformance Seals, and Performance Oracle with Circle of Trust for real-world outcome tracking."
license = "MIT"
repository = "https://github.com/draxork/opentrustprotocol-rs"
homepage = "https://opentrustprotocol.com"
documentation = "https://docs.rs/opentrustprotocol"
readme = "README.md"
keywords = [
"neutrosophy", "trust", "uncertainty", "audit", "conformance-seal"
]
categories = [
"algorithms", "data-structures", "cryptography::cryptocurrencies",
"development-tools", "web-programming"
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
sha2 = "0.10"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
criterion = "0.5"
[lib]
name = "opentrustprotocol"
path = "src/lib.rs"
[[example]]
name = "mapper_examples"
path = "examples/mapper_examples.rs"
[[example]]
name = "conformance_seal_demo"
path = "examples/conformance_seal_demo.rs"
[[bench]]
name = "fusion_benchmarks"
path = "benchmarks/fusion_benchmarks.rs"
harness = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1