aya/ebpf
Wouter Dullaert 7ad3926d99 feat(aya-ebpf): Implement memmove
The compiler will emit this function for certain operations, but aya
currently does not provide an implementation.
This leads to ebpf loading failures as the kernel can't find the symbol when
loading the program.

The implementation is based on https://github.com/rust-lang/compiler-builtins/blob/master/src/mem/mod.rs#L29-L40
and https://github.com/rust-lang/compiler-builtins/blob/master/src/mem/impls.rs#L128-L135
Only the simplest case has been implemented, none of the word optimizations,
since memcpy also doesn't seem to have them.
..
.cargo chore: Rename bpf dir to ebpf
aya-ebpf feat(aya-ebpf): Implement memmove
aya-ebpf-bindings [codegen] Update libbpf to c1a6c770c46c6e78ad6755bf596c23a4e6f6b216
aya-ebpf-cty Allowlist expected cfgs
aya-log-ebpf Release aya-log-ebpf v0.1.0
rust-toolchain.toml chore: Rename bpf dir to ebpf