• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

patches/25-Apr-2025-550548

src/25-Apr-2025-8,6105,972

tests/25-Apr-2025-3,2802,484

.cargo-checksum.jsonD25-Apr-20254.1 KiB11

Android.bpD25-Apr-2025946 3935

CHANGELOG.mdD25-Apr-20256.7 KiB176153

Cargo.tomlD25-Apr-20252.4 KiB12499

LICENSED25-Apr-20251.3 KiB2419

LICENSE.BSD-2-ClauseD25-Apr-20251.6 KiB3327

METADATAD25-Apr-2025438 2120

MODULE_LICENSE_BSD_LIKED25-Apr-20250

README.mdD25-Apr-20251.1 KiB3120

build.rsD25-Apr-20256.3 KiB226188

cargo_embargo.jsonD25-Apr-2025202 1211

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