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.
28 lines
765 B
TOML
28 lines
765 B
TOML
[package]
|
|
name = "aya-obj"
|
|
version = "0.1.0"
|
|
description = "An eBPF object file parsing library with BTF and relocation support."
|
|
keywords = ["bpf", "btf", "ebpf", "elf", "object"]
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/aya-obj"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
core-error = { workspace = true, default-features = true }
|
|
hashbrown = { workspace = true, default-features = true }
|
|
log = { workspace = true }
|
|
object = { workspace = true, features = ["elf", "read_core"] }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
rbpf = { workspace = true }
|
|
|
|
[features]
|
|
std = []
|