Cargo.toml 716 B

1234567891011121314151617181920212223242526272829
  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 = ["bpf", "btf", "ebpf", "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 = [
  16. "elf",
  17. "read_core",
  18. ] }
  19. hashbrown = { version = "0.14" }
  20. thiserror = { version = "1", default-features = false }
  21. core-error = { version = "0.0.0" }
  22. [dev-dependencies]
  23. assert_matches = "1.5.0"
  24. rbpf = "0.2.0"
  25. [features]
  26. std = []