Cargo.toml 698 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "aya-obj"
  3. version = "0.1.0"
  4. description = "An eBPF object file parsing library with BTF and relocation support."
  5. keywords = ["ebpf", "bpf", "btf", "elf", "object"]
  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.31", default-features = false, features = ["read_core", "elf"] }
  16. hashbrown = { version = "0.13" }
  17. thiserror = { version = "1", default-features = false }
  18. core-error = { version = "0.0.0" }
  19. [dev-dependencies]
  20. matches = "0.1.8"
  21. rbpf = "0.1.0"
  22. [features]
  23. std = []