Cargo.toml 847 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "aya-ebpf"
  3. version = "0.1.1"
  4. description = "A library for writing eBPF programs"
  5. authors.workspace = true
  6. license.workspace = true
  7. repository.workspace = true
  8. homepage.workspace = true
  9. edition.workspace = true
  10. [dependencies]
  11. aya-ebpf-cty = { version = "^0.2.2", path = "../aya-ebpf-cty" }
  12. aya-ebpf-macros = { version = "^0.1.1", path = "../../aya-ebpf-macros" }
  13. aya-ebpf-bindings = { version = "^0.1.1", path = "../aya-ebpf-bindings" }
  14. const-assert = { workspace = true, optional = true }
  15. [build-dependencies]
  16. rustversion = { workspace = true }
  17. [features]
  18. default = []
  19. # TODO(https://github.com/rust-lang/rust/issues/76560): Always utilize the
  20. # logic gated behind this feature. This is not currently possible because the
  21. # underlying `const_generic_exprs` language feature is still incomplete.
  22. const_assert = ["const-assert"]