mirror of https://github.com/aya-rs/aya
chore: Fix clippy panic_handler warnings
Working with aya in vscode will currently show a number of warnings along the lines of: ``` found duplicate lang item `panic_impl` the lang item is first defined in crate `std` (which `aya` depends on) ... second definition in the local crate (`bpf_probe_read`) ``` This comes from feature unification. integration-test requires the integration-common user feature, which requires aya, which in turn brings in std. For this same reason we avoid running clippy across the whole workspace. We can avoid this issue by using the panic handler from the panic_halt crate, which implements the same loop {} panic handler we use today. However, it seems rustc is happy to conditionally link the panic handler from an external crate without issuing warnings. Signed-off-by: Dave Tucker <dave@dtucker.co.uk>reviewable/pr1234/r1
parent
1db534defa
commit
40516e1352
Loading…
Reference in New Issue