Cargo.toml 543 B

1234567891011121314151617181920
  1. [package]
  2. name = "aya-obj"
  3. version = "0.11.0"
  4. description = "A library for loading and relocating eBPF object files"
  5. keywords = ["ebpf", "bpf", "linux", "kernel"]
  6. license = "MIT OR Apache-2.0"
  7. authors = ["The Aya Contributors"]
  8. repository = "https://github.com/aya-rs/aya"
  9. readme = "README.md"
  10. documentation = "https://docs.rs/aya-obj"
  11. edition = "2021"
  12. [dependencies]
  13. bytes = "1"
  14. log = "0.4"
  15. object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] }
  16. thiserror = "1"
  17. [dev-dependencies]
  18. matches = "0.1.8"