Cargo.toml 568 B

12345678910111213141516171819202122
  1. [package]
  2. description = "A library for writing eBPF programs"
  3. name = "aya-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-bindings = { version = "^0.1.1", path = "../aya-ebpf-bindings" }
  15. aya-ebpf-cty = { version = "^0.2.2", path = "../aya-ebpf-cty" }
  16. aya-ebpf-macros = { version = "^0.1.1", path = "../../aya-ebpf-macros" }
  17. [build-dependencies]
  18. rustversion = { workspace = true }