Skip to content

Commit

Permalink
capi: Enable 'bpf' feature of main library
Browse files Browse the repository at this point in the history
To the degree that is possible, we intend to only ship a single version
of blazesym-c, which means that it should have relevant features
enabled. It's generally useful to have support for the recently added
BPF program symbolization included as well, so enable the 'bpf' feature
of the main library. We also enable 'dwarf', but that's just to make it
more obvious that it's enabled, as it actually is enabled by default.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Oct 29, 2024
1 parent 707d12c commit df91be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ which = {version = "6.0.0", optional = true}
# Pinned, because we use #[doc(hidden)] APIs.
# TODO: Enable `zstd` feature once we enabled it for testing in the main
# crate.
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["apk", "demangle", "gsym", "zlib"]}
blazesym = {version = "=0.2.0-rc.1", path = "../", features = ["apk", "bpf", "demangle", "dwarf", "gsym", "zlib"]}
libc = "0.2.137"
# TODO: Remove dependency one MSRV is 1.77.
memoffset = "0.9"
Expand Down

0 comments on commit df91be5

Please sign in to comment.