[package]
edition = "2024"
rust-version = "1.88"
name = "tapes-capture"
version = "0.1.0"
authors = ["Paper Compute"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Harness-agnostic capture primitives: the X-Tapes-* envelope producer, the capture-gateway environment contract and launch-nonce protocol, peer-PID lookup, and the peer-trust ancestry check."
homepage = "https://tapes.dev"
readme = "README.md"
keywords = [
"tapes",
"capture",
"observability",
"telemetry",
"agent",
]
categories = [
"development-tools::debugging",
"network-programming",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/papercomputeco/tapes-crates"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
envelope-fixtures = []
[lib]
name = "tapes_capture"
path = "src/lib.rs"
[[test]]
name = "envelope_corpus_seal"
path = "tests/envelope_corpus_seal.rs"
[[test]]
name = "envelope_fixture_corpus"
path = "tests/envelope_fixture_corpus.rs"
[dependencies.base64]
version = "0.22"
[dependencies.http]
version = "1"
[dependencies.libc]
version = "0.2"
[dependencies.netsock]
version = "0.7"
[dependencies.percent-encoding]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.snafu]
version = "0.8"
[dependencies.tokio]
version = "1"
features = ["time"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"rt-multi-thread",
"test-util",
"time",
]
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"