Cargo.toml 819 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 = ["ebpf", "bpf", "btf", "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.30", default-features = false, features = ["read_core", "elf"] }
  16. hashbrown = { version = "0.13", optional = true }
  17. thiserror-std = { package = "thiserror", version = "1" }
  18. thiserror-core = { version = "1", default-features = false, features = [], optional = true }
  19. [dev-dependencies]
  20. matches = "0.1.8"
  21. rbpf = "0.1.0"
  22. [features]
  23. default = []
  24. no_std = ["hashbrown", "thiserror-core"]