[package] name = "btfdump" description = "BTF introspection tool" version = "0.0.4" authors = ["Andrii Nakryiko "] license = "BSD-2-Clause" edition = "2018" readme = "README.md" repository = "https://github.com/anakryiko/btfdump" keywords = ["btf", "bpf"] [lib] name = "btf" path = "src/lib.rs" [[bin]] name = "btf" path = "src/main.rs" [dependencies] clap = { version = "4.0", features = ["derive", "wrap_help"] } goblin = "0.7.1" object = "0.32.1" memmap = "0.7.0" scroll = "0.11.0" scroll_derive = "0.11.0" regex = "1" lazy_static = "1" bitflags = "2"