[package]
edition = "2021"
name = "treeship-core"
version = "0.11.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Portable trust receipts for agent workflows - core library"
homepage = "https://treeship.dev"
readme = "README.md"
keywords = [
"treeship",
"attestation",
"trust",
"agents",
"cryptography",
]
categories = [
"cryptography",
"authentication",
]
license = "Apache-2.0"
repository = "https://github.com/zerkerlabs/treeship"
[lib]
name = "treeship_core"
path = "src/lib.rs"
[[test]]
name = "approval_evidence_binding"
path = "tests/approval_evidence_binding.rs"
[[test]]
name = "hub_checkpoint_verify"
path = "tests/hub_checkpoint_verify.rs"
[[test]]
name = "legacy_receipt_fixtures"
path = "tests/legacy_receipt_fixtures.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.base64]
version = "0.22"
[dependencies.ed25519-dalek]
version = "2"
features = [
"rand_core",
"zeroize",
]
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.zeroize]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(not(target_family = "wasm"))'.dependencies.fs2]
version = "0.4"
[target.'cfg(not(target_family = "wasm"))'.dependencies.hostname]
version = "0.4"