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