Cargo.toml 590 B

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