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
801 B
TOML
28 lines
801 B
TOML
[package]
|
|
name = "aya-obj"
|
|
version = "0.11.0"
|
|
description = "A library for loading and relocating eBPF object files"
|
|
keywords = ["ebpf", "bpf", "linux", "kernel"]
|
|
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.30", default-features = false, features = ["read_core", "elf"] }
|
|
hashbrown = { version = "0.13", optional = true }
|
|
thiserror-std = { package = "thiserror", version = "1" }
|
|
thiserror-core = { version = "1", default-features = false, features = [], optional = true }
|
|
|
|
[dev-dependencies]
|
|
matches = "0.1.8"
|
|
rbpf = "0.1.0"
|
|
|
|
[features]
|
|
default = []
|
|
no_std = ["hashbrown", "thiserror-core"]
|