[package]
edition = "2021"
name = "orb8-agent"
version = "0.0.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Node agent for orb8 (DaemonSet)"
homepage = "https://github.com/Ignoramuss/orb8"
documentation = "https://docs.rs/orb8-agent"
readme = "README.md"
keywords = [
"ebpf",
"observability",
"kubernetes",
"agent",
"daemonset",
]
categories = [
"command-line-utilities",
"development-tools::profiling",
]
license = "Apache-2.0"
repository = "https://github.com/Ignoramuss/orb8"
[lib]
name = "orb8_agent"
path = "src/lib.rs"
[[bin]]
name = "orb8-agent"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.dashmap]
version = "6.1"
[dependencies.env_logger]
version = "0.11"
[dependencies.hostname]
version = "0.4"
[dependencies.log]
version = "0.4"
[dependencies.orb8-common]
version = "0.0.4"
[dependencies.tokio]
version = "1.41"
features = ["full"]
[build-dependencies.anyhow]
version = "1.0"
[build-dependencies.aya-build]
version = "0.1.3"
[target.'cfg(target_os = "linux")'.dependencies.aya]
version = "0.13"
features = ["async_tokio"]
[target.'cfg(target_os = "linux")'.dependencies.aya-log]
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.futures]
version = "0.3"
[target.'cfg(target_os = "linux")'.dependencies.k8s-openapi]
version = "0.24"
features = ["latest"]
[target.'cfg(target_os = "linux")'.dependencies.kube]
version = "0.98"
features = [
"runtime",
"client",
]
[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "linux")'.dependencies.orb8-proto]
version = "0.0.4"
[target.'cfg(target_os = "linux")'.dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[target.'cfg(target_os = "linux")'.dependencies.tonic]
version = "0.12"