virtio_gpu/
lib.rs

1#![feature(iter_map_windows)]
2
3//! Virtio network device driver.
4//!
5//! Provides smoltcp types for use with the virtio network device.
6mod gpu;
7mod hal;
8mod transport;
9
10pub use gpu::{get_device, DeviceWrapper};
11pub use transport::TwizzlerTransport;