Cargo.toml 765 B

123456789101112131415161718192021222324252627
  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. 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. core-error = { workspace = true, default-features = true }
  16. hashbrown = { workspace = true, default-features = true }
  17. log = { workspace = true }
  18. object = { workspace = true, features = ["elf", "read_core"] }
  19. thiserror = { workspace = true }
  20. [dev-dependencies]
  21. assert_matches = { workspace = true }
  22. rbpf = { workspace = true }
  23. [features]
  24. std = []