Cargo.toml 807 B

12345678910111213141516171819202122232425262728
  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. rust-version.workspace = true
  13. edition.workspace = true
  14. [dependencies]
  15. aya = { path = "../aya", version = "^0.13.1", features = ["async_tokio"] }
  16. aya-log-common = { path = "../aya-log-common", version = "^0.1.15", default-features = false }
  17. bytes = { workspace = true }
  18. log = { workspace = true }
  19. thiserror = { workspace = true }
  20. tokio = { workspace = true, features = ["rt"] }
  21. [dev-dependencies]
  22. env_logger = { workspace = true }
  23. testing_logger = { workspace = true }
  24. [lib]
  25. path = "src/lib.rs"