mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
29 lines
885 B
TOML
29 lines
885 B
TOML
[package]
|
|
name = "aster-virtio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bitflags = "1.3"
|
|
spin = "0.9.4"
|
|
aster-input = { path = "../input" }
|
|
aster-block = { path = "../block" }
|
|
aster-network = { path = "../network" }
|
|
aster-console = { path = "../console" }
|
|
aster-util = { path = "../../libs/aster-util" }
|
|
aster-rights = { path = "../../libs/aster-rights" }
|
|
aster-bigtcp = { path = "../../libs/aster-bigtcp" }
|
|
aster-softirq = { path = "../softirq"}
|
|
aster-systree = { path = "../systree" }
|
|
id-alloc = { path = "../../../ostd/libs/id-alloc" }
|
|
typeflags-util = { path = "../../libs/typeflags-util" }
|
|
ostd = { path = "../../../ostd" }
|
|
component = { path = "../../libs/comp-sys/component" }
|
|
log = "0.4"
|
|
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
|
|
|
|
[lints]
|
|
workspace = true
|