-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
28 lines (25 loc) · 937 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"axdriver_base",
"axdriver_block",
"axdriver_net",
"axdriver_display",
"axdriver_pci",
"axdriver_virtio",
]
[workspace.package]
version = "0.1.1"
authors = ["Yuekai Jia <[email protected]>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
documentation = "https://arceos-org.github.io/axdriver_crates"
repository = "https://github.com/arceos-org/axdriver_crates"
categories = ["os", "no-std", "hardware-support"]
[workspace.dependencies]
axdriver_base = { path = "axdriver_base", version = "0.1" }
axdriver_block = { path = "axdriver_block", version = "0.1" }
axdriver_net = { path = "axdriver_net", version = "0.1" }
axdriver_display = { path = "axdriver_display", version = "0.1" }
axdriver_pci = { path = "axdriver_pci", version = "0.1" }
axdriver_virtio = { path = "axdriver_virtio", version = "0.1" }