mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
698 B
TOML
27 lines
698 B
TOML
[package]
|
|
name = "aya-obj"
|
|
version = "0.1.0"
|
|
description = "An eBPF object file parsing library with BTF and relocation support."
|
|
keywords = ["ebpf", "bpf", "btf", "elf", "object"]
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["The Aya Contributors"]
|
|
repository = "https://github.com/aya-rs/aya"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/aya-obj"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bytes = "1"
|
|
log = "0.4"
|
|
object = { version = "0.31", default-features = false, features = ["read_core", "elf"] }
|
|
hashbrown = { version = "0.14" }
|
|
thiserror = { version = "1", default-features = false }
|
|
core-error = { version = "0.0.0" }
|
|
|
|
[dev-dependencies]
|
|
matches = "0.1.8"
|
|
rbpf = "0.2.0"
|
|
|
|
[features]
|
|
std = []
|