1[package] 2name = "virtio-drivers" 3version = "0.7.3" 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 = "2.3.0" 20zerocopy = { version = "0.7.5", features = ["derive"] } 21 22[features] 23default = ["alloc"] 24alloc = ["zerocopy/alloc"] 25 26[dev-dependencies] 27zerocopy = { version = "0.7.5", features = ["alloc"] } 28