• Home
Name Date Size #Lines LOC

..--

patches/04-Jul-2025-1110

src/04-Jul-2025-8,8536,127

tests/04-Jul-2025-3,4442,608

.android-checksum.jsonD04-Jul-20254.8 KiB11

.cargo-checksum.jsonD04-Jul-20254.3 KiB11

Android.bpD04-Jul-20251,014 4137

CHANGELOG.mdD04-Jul-20257.3 KiB199170

Cargo.tomlD04-Jul-20252.5 KiB128102

LICENSED04-Jul-20251.6 KiB3327

LICENSE.BSD-2-ClauseD04-Jul-20251.6 KiB3327

METADATAD04-Jul-2025421 1817

MODULE_LICENSE_BSDD04-Jul-20250

README.mdD04-Jul-20251.1 KiB3120

android_config.tomlD04-Jul-202544 21

cargo_embargo.jsonD04-Jul-2025314 1717

README.md

1[![CI](https://github.com/libbpf/libbpf-rs/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/libbpf/libbpf-rs/actions/workflows/test.yml)
2[![rustc](https://img.shields.io/badge/rustc-1.71+-blue.svg)](https://blog.rust-lang.org/2023/07/13/Rust-1.71.0.html)
3
4# libbpf-rs
5
6[![crates.io badge](https://img.shields.io/crates/v/libbpf-rs.svg)](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