1234567891011121314151617181920212223242526 |
- [package]
- name = "aya-log"
- version = "0.2.0"
- description = "A logging library for eBPF programs."
- keywords = ["bpf", "ebpf", "log", "logging"]
- readme = "README.md"
- documentation = "https://docs.rs/aya-log"
- edition = "2021"
- [dependencies]
- aya = { path = "../aya", features = ["async_tokio"] }
- aya-log-common = { workspace = true }
- bytes = { workspace = true }
- log = { workspace = true }
- thiserror = { workspace = true }
- tokio = { workspace = true, features = ["rt"] }
- [dev-dependencies]
- env_logger = { workspace = true }
- testing_logger = { workspace = true }
- [lib]
- path = "src/lib.rs"
|