• Home
Name Date Size #Lines LOC

..--

src/06-Sep-2024-5,7855,736

.cargo_vcs_info.jsonD06-Sep-2024116 66

Android.bpD06-Sep-2024442 1412

CHANGELOG.mdD06-Sep-20241.2 KiB4328

CONTRIBUTING.mdD06-Sep-20241.6 KiB5949

Cargo.tomlD06-Sep-2024867 2925

Cargo.toml.origD06-Sep-2024507 1916

LICENSED06-Sep-202412.6 KiB236198

METADATAD06-Sep-2024751 2523

MODULE_LICENSE_APACHE2D06-Sep-20240

MODULE_LICENSE_BSDD06-Sep-20240

OWNERSD06-Sep-202445 21

README.mdD06-Sep-2024467 1814

cargo_embargo.jsonD06-Sep-2024108 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