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.
28 lines
777 B
TOML
28 lines
777 B
TOML
[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"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
aya = { path = "../aya", version = "^0.12.0", features = ["async_tokio"] }
|
|
aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false }
|
|
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"
|