4
0

Cargo.toml 703 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "aya-log"
  3. version = "0.1.13"
  4. description = "A logging library for eBPF programs."
  5. keywords = ["bpf", "ebpf", "log", "logging"]
  6. license = "MIT OR Apache-2.0"
  7. authors = ["The Aya Contributors"]
  8. repository = "https://github.com/aya-rs/aya-log"
  9. readme = "README.md"
  10. documentation = "https://docs.rs/aya-log"
  11. edition = "2021"
  12. [dependencies]
  13. aya = { workspace = true, features = ["async_tokio"] }
  14. aya-log-common = { workspace = true }
  15. bytes = { workspace = true }
  16. log = { workspace = true }
  17. thiserror = { workspace = true }
  18. tokio = { workspace = true, features = ["rt"] }
  19. [dev-dependencies]
  20. env_logger = { workspace = true }
  21. testing_logger = { workspace = true }
  22. [lib]
  23. path = "src/lib.rs"