mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
687 B
TOML
27 lines
687 B
TOML
[package]
|
|
name = "aya-log"
|
|
version = "0.1.11"
|
|
description = "A logging library for eBPF programs."
|
|
keywords = ["ebpf", "bpf", "log", "logging"]
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["The Aya Contributors"]
|
|
repository = "https://github.com/aya-rs/aya-log"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/aya-log"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
aya = { path = "../aya", version = "0.11.0", features=["async_tokio"] }
|
|
aya-log-common = { path = "../aya-log-common", version = "0.1.11-dev.0", features=["userspace"] }
|
|
thiserror = "1"
|
|
log = "0.4"
|
|
bytes = "1.1"
|
|
tokio = { version = "1.2.0" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.9"
|
|
testing_logger = "0.1.1"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|