Cargo.toml 763 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 = ["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 = { workspace = true }
  14. core-error = { workspace = true, default-features = 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 = []