• Home
Name Date Size #Lines LOC

..--

patches/04-Jul-2025-242241

src/04-Jul-2025-2,9812,929

.android-checksum.jsonD04-Jul-20252 KiB11

.cargo-checksum.jsonD04-Jul-20251.4 KiB11

Android.bpD04-Jul-2025826 3429

CHANGELOG.mdD04-Jul-20251.4 KiB5736

CONTRIBUTING.mdD04-Jul-20251.6 KiB6050

Cargo.tomlD04-Jul-2025994 3732

LICENSED04-Jul-202512.6 KiB236198

METADATAD04-Jul-2025419 1817

MODULE_LICENSE_APACHE2D04-Jul-20250

README.mdD04-Jul-2025467 1814

cargo2android_module.bp.fragmentD04-Jul-202581 98

cargo_embargo.jsonD04-Jul-2025231 1111

README.md

1# virtio-bindings
2Rust FFI bindings to virtio generated using [bindgen](https://crates.io/crates/bindgen).
3
4## Usage
5Add this to your `Cargo.toml`:
6```toml
7virtio-bindings = "0.2"
8```
9You can then import the bindings where you need them. As an example, to grab the
10bindings for virtio-blk, you can do:
11```rust
12use virtio_bindings::bindings::virtio_blk::*;
13```
14
15## Development
16
17To update the bindings, follow the steps in the [Contributing Document](CONTRIBUTING.md).
18