Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
patches/ | 25-Apr-2025 | - | 550 | 548 | ||
src/ | 25-Apr-2025 | - | 8,610 | 5,972 | ||
tests/ | 25-Apr-2025 | - | 3,280 | 2,484 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 4.1 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 946 | 39 | 35 | |
CHANGELOG.md | D | 25-Apr-2025 | 6.7 KiB | 176 | 153 | |
Cargo.toml | D | 25-Apr-2025 | 2.4 KiB | 124 | 99 | |
LICENSE | D | 25-Apr-2025 | 1.3 KiB | 24 | 19 | |
LICENSE.BSD-2-Clause | D | 25-Apr-2025 | 1.6 KiB | 33 | 27 | |
METADATA | D | 25-Apr-2025 | 438 | 21 | 20 | |
MODULE_LICENSE_BSD_LIKE | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 1.1 KiB | 31 | 20 | |
build.rs | D | 25-Apr-2025 | 6.3 KiB | 226 | 188 | |
cargo_embargo.json | D | 25-Apr-2025 | 202 | 12 | 11 |
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