4
0

Cargo.toml 721 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "aya-obj"
  3. version = "0.2.1"
  4. description = "An eBPF object file parsing library with BTF and relocation support."
  5. keywords = ["bpf", "btf", "ebpf", "elf", "object"]
  6. readme = "README.md"
  7. documentation = "https://docs.rs/aya-obj"
  8. authors.workspace = true
  9. license.workspace = true
  10. repository.workspace = true
  11. homepage.workspace = true
  12. edition.workspace = true
  13. [dependencies]
  14. bytes = { workspace = true }
  15. hashbrown = { workspace = true, default-features = true }
  16. log = { workspace = true }
  17. object = { workspace = true, features = ["elf", "read_core"] }
  18. thiserror = { workspace = true }
  19. [dev-dependencies]
  20. assert_matches = { workspace = true }
  21. rbpf = { workspace = true }
  22. [features]
  23. std = ["thiserror/std"]