Cargo.toml 778 B

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