1[package] 2name = "virtio-drivers" 3version = "0.4.0" 4license = "MIT" 5authors = [ 6 "Jiajie Chen <noc@jiegec.ac.cn>", 7 "Runji Wang <wangrunji0408@163.com>", 8 "Yuekai Jia <equation618@gmail.com>", 9 "Andrew Walbran <qwandor@google.com>", 10] 11edition = "2018" 12description = "VirtIO guest drivers." 13repository = "https://github.com/rcore-os/virtio-drivers" 14keywords = ["virtio"] 15categories = ["hardware-support", "no-std"] 16 17[dependencies] 18log = "0.4" 19bitflags = "1.3" 20zerocopy = "0.6.1" 21 22[features] 23default = ["alloc"] 24alloc = [] 25