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

..--

patches/25-Apr-2025-242241

src/25-Apr-2025-5,7855,736

.cargo-checksum.jsonD25-Apr-20251.3 KiB11

Android.bpD25-Apr-2025664 2420

CHANGELOG.mdD25-Apr-20251.2 KiB4328

CONTRIBUTING.mdD25-Apr-20251.6 KiB5949

Cargo.tomlD25-Apr-2025867 2925

LICENSED25-Apr-202512.6 KiB236198

METADATAD25-Apr-2025419 1817

MODULE_LICENSE_APACHE2D25-Apr-20250

MODULE_LICENSE_BSDD25-Apr-20250

README.mdD25-Apr-2025467 1814

cargo_embargo.jsonD25-Apr-2025108 98

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