[package]
edition = "2021"
rust-version = "1.89"
name = "assay-adapter-api"
version = "5.2.0"
authors = ["Assay"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal/experimental substrate for Assay evidence translation. The shared trait surface the Assay protocol adapters implement, published because `assay-core` depends on it and cargo requires every `[dependencies]` entry of a published crate to resolve from crates.io. No standalone product guarantee; semver tracks the Assay workspace."
readme = "README.md"
license = "MIT"
repository = "https://github.com/Rul1an/assay"
[lib]
name = "assay_adapter_api"
path = "src/lib.rs"
[dependencies.assay-evidence]
version = "5.2.0"
[dependencies.hex]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
"std",
]
default-features = false
[dependencies.serde_json]
version = "1.0"
features = ["std"]
default-features = false
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[lints.clippy]
missing_errors_doc = "allow"
print_stdout = "allow"
unwrap_used = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "deny"
unused_lifetimes = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1