Cargo.toml 810 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. description = "A logging library for eBPF programs."
  3. documentation = "https://docs.rs/aya-log"
  4. keywords = ["bpf", "ebpf", "log", "logging"]
  5. name = "aya-log"
  6. readme = "README.md"
  7. version = "0.2.1"
  8. authors.workspace = true
  9. edition.workspace = true
  10. homepage.workspace = true
  11. license.workspace = true
  12. repository.workspace = true
  13. rust-version.workspace = true
  14. [lints]
  15. workspace = true
  16. [dependencies]
  17. aya = { path = "../aya", version = "^0.13.1", default-features = false }
  18. aya-log-common = { path = "../aya-log-common", version = "^0.1.15", default-features = false }
  19. log = { workspace = true }
  20. thiserror = { workspace = true }
  21. [dev-dependencies]
  22. env_logger = { workspace = true }
  23. testing_logger = { workspace = true }
  24. tokio = { workspace = true, features = ["net", "rt"] }
  25. [lib]
  26. path = "src/lib.rs"