Cargo.toml 834 B

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