[package]
edition = "2021"
rust-version = "1.93"
name = "chio-http-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protocol-agnostic HTTP security types for the Chio kernel"
readme = false
license = "Apache-2.0"
repository = "https://github.com/backbay/chio"
[lib]
name = "chio_http_core"
path = "src/lib.rs"
[[test]]
name = "approvals_endpoints"
path = "tests/approvals_endpoints.rs"
[[test]]
name = "compliance_score_endpoint"
path = "tests/compliance_score_endpoint.rs"
[[test]]
name = "emergency_endpoints"
path = "tests/emergency_endpoints.rs"
[[test]]
name = "evaluate_plan_endpoint"
path = "tests/evaluate_plan_endpoint.rs"
[[test]]
name = "execution_nonce"
path = "tests/execution_nonce.rs"
[[test]]
name = "regulatory_api"
path = "tests/regulatory_api.rs"
[[test]]
name = "verdict_deny_enrichment"
path = "tests/verdict_deny_enrichment.rs"
[dependencies.chio-core-types]
version = "0.1.0"
[dependencies.chio-cross-protocol]
version = "0.1.0"
[dependencies.chio-kernel]
version = "0.1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.hex]
version = "0.4"
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dev-dependencies]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"