[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-host-telemetry"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Host-side telemetry receiver for CellOS — vsock listener that host-stamps and signs CloudEvents emitted by the in-guest cellos-telemetry agent."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-host-telemetry"
readme = "README.md"
keywords = [
"cellos",
"telemetry",
"vsock",
"cloudevents",
"host",
]
categories = [
"asynchronous",
"cryptography",
"os::linux-apis",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[lib]
name = "cellos_host_telemetry"
path = "src/lib.rs"
[[test]]
name = "kill_the_agent"
path = "tests/kill_the_agent.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.cellos-core]
version = "0.7.2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ciborium]
version = "0.2"
[dependencies.ed25519-dalek]
version = "2"
features = ["zeroize"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"net",
"io-util",
"time",
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.zeroize]
version = "1.8"
features = [
"std",
"alloc",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt-multi-thread",
"macros",
"sync",
"net",
"io-util",
"time",
"test-util",
]
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"