25 lines
525 B
TOML
25 lines
525 B
TOML
|
|
[package]
|
||
|
|
name = "virtio-drivers"
|
||
|
|
version = "0.4.0"
|
||
|
|
license = "MIT"
|
||
|
|
authors = [
|
||
|
|
"Jiajie Chen <noc@jiegec.ac.cn>",
|
||
|
|
"Runji Wang <wangrunji0408@163.com>",
|
||
|
|
"Yuekai Jia <equation618@gmail.com>",
|
||
|
|
"Andrew Walbran <qwandor@google.com>",
|
||
|
|
]
|
||
|
|
edition = "2018"
|
||
|
|
description = "VirtIO guest drivers."
|
||
|
|
repository = "https://github.com/rcore-os/virtio-drivers"
|
||
|
|
keywords = ["virtio"]
|
||
|
|
categories = ["hardware-support", "no-std"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
log = "0.4"
|
||
|
|
bitflags = "1.3"
|
||
|
|
zerocopy = "0.6.1"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["alloc"]
|
||
|
|
alloc = []
|