4
0

Cargo.toml 673 B

123456789101112131415161718192021
  1. [package]
  2. name = "aya-bpf"
  3. version = "0.1.0"
  4. authors = ["Alessandro Decina <[email protected]>"]
  5. edition = "2021"
  6. [dependencies]
  7. aya-bpf-cty = { path = "../aya-bpf-cty" }
  8. aya-bpf-macros = { path = "../../aya-bpf-macros" }
  9. aya-bpf-bindings = { path = "../aya-bpf-bindings" }
  10. const-assert = { workspace = true, optional = true }
  11. [build-dependencies]
  12. rustversion = { workspace = true }
  13. [features]
  14. default = []
  15. # TODO(https://github.com/rust-lang/rust/issues/76560): Always utilize the
  16. # logic gated behind this feature. This is not currently possible because the
  17. # underlying `const_generic_exprs` language feature is still incomplete.
  18. const_assert = ["const-assert"]