| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| patches/ | 04-Jul-2025 | - | 11 | 10 | ||
| src/ | 04-Jul-2025 | - | 8,853 | 6,127 | ||
| tests/ | 04-Jul-2025 | - | 3,444 | 2,608 | ||
| .android-checksum.json | D | 04-Jul-2025 | 4.8 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 4.3 KiB | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 1,014 | 41 | 37 | |
| CHANGELOG.md | D | 04-Jul-2025 | 7.3 KiB | 199 | 170 | |
| Cargo.toml | D | 04-Jul-2025 | 2.5 KiB | 128 | 102 | |
| LICENSE | D | 04-Jul-2025 | 1.6 KiB | 33 | 27 | |
| LICENSE.BSD-2-Clause | D | 04-Jul-2025 | 1.6 KiB | 33 | 27 | |
| METADATA | D | 04-Jul-2025 | 421 | 18 | 17 | |
| MODULE_LICENSE_BSD | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1.1 KiB | 31 | 20 | |
| android_config.toml | D | 04-Jul-2025 | 44 | 2 | 1 | |
| cargo_embargo.json | D | 04-Jul-2025 | 314 | 17 | 17 |
README.md
1[](https://github.com/libbpf/libbpf-rs/actions/workflows/test.yml) 2[](https://blog.rust-lang.org/2023/07/13/Rust-1.71.0.html) 3 4# libbpf-rs 5 6[](https://crates.io/crates/libbpf-rs) 7 8Idiomatic Rust wrapper around [libbpf](https://github.com/libbpf/libbpf). 9 10- [Changelog](CHANGELOG.md) 11 12To use in your project, add into your `Cargo.toml`: 13```toml 14[dependencies] 15libbpf-rs = "0.24" 16``` 17 18See [full documentation here](https://docs.rs/libbpf-rs). 19 20This crate adheres to Cargo's [semantic versioning rules][cargo-semver]. At a 21minimum, it builds with the most recent Rust stable release minus five minor 22versions ("N - 5"). E.g., assuming the most recent Rust stable is `1.68`, the 23crate is guaranteed to build with `1.63` and higher. 24 25## Contributing 26 27We welcome all contributions! Please see the [contributor's 28guide](../CONTRIBUTING.md) for more information. 29 30[cargo-semver]: https://doc.rust-lang.org/cargo/reference/resolver.html#semver-compatibility 31