Cargo.toml 530 B

12345678910111213141516171819202122
  1. [package]
  2. description = "Logging for eBPF programs"
  3. name = "aya-log-ebpf"
  4. version = "0.1.1"
  5. authors.workspace = true
  6. edition.workspace = true
  7. homepage.workspace = true
  8. license.workspace = true
  9. repository.workspace = true
  10. rust-version.workspace = true
  11. [lints]
  12. workspace = true
  13. [dependencies]
  14. aya-ebpf = { version = "^0.1.1", path = "../aya-ebpf" }
  15. aya-log-common = { version = "^0.1.15", path = "../../aya-log-common" }
  16. aya-log-ebpf-macros = { version = "^0.1.0", path = "../../aya-log-ebpf-macros" }
  17. [lib]
  18. path = "src/lib.rs"