4
0

Cargo.toml 777 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "aya-log"
  3. version = "0.2.1"
  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. authors.workspace = true
  9. license.workspace = true
  10. repository.workspace = true
  11. homepage.workspace = true
  12. edition.workspace = true
  13. [dependencies]
  14. aya = { path = "../aya", version = "^0.13.1", features = ["async_tokio"] }
  15. aya-log-common = { path = "../aya-log-common", version = "^0.1.15", default-features = false }
  16. bytes = { workspace = true }
  17. log = { workspace = true }
  18. thiserror = { workspace = true }
  19. tokio = { workspace = true, features = ["rt"] }
  20. [dev-dependencies]
  21. env_logger = { workspace = true }
  22. testing_logger = { workspace = true }
  23. [lib]
  24. path = "src/lib.rs"