forked from syswonder/ruxos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "driver_virtio"
version = "0.1.0"
edition = "2021"
authors = [
"Yuekai Jia <equation618@gmail.com>",
"ChengXiang Qi <kuangjux@outlook.com>",
]
description = "Wrappers of some devices in the `virtio-drivers` crate, that implement traits in the `driver_common` series crates"
license = "GPL-3.0-or-later OR Apache-2.0"
homepage = "https://github.com/rcore-os/arceos"
repository = "https://github.com/rcore-os/arceos/tree/main/crates/driver_virtio"
documentation = "https://rcore-os.github.io/arceos/driver_virtio/index.html"
[features]
block = ["driver_block"]
net = ["driver_net"]
gpu = ["driver_display"]
v9p = ["driver_9p"]
console = ["driver_console"]
[dependencies]
log = { workspace = true }
spin = { workspace = true }
driver_common = { path = "../driver_common" }
driver_block = { path = "../driver_block", optional = true }
driver_net = { path = "../driver_net", optional = true }
driver_display = { path = "../driver_display", optional = true }
driver_9p = { path = "../driver_9p", optional = true }
driver_console = { path = "../driver_console", optional = true }
virtio-drivers = { git = "https://github.com/syswonder/virtio-drivers.git", rev = "31f6555" }