2022-11-22 08:42:26 +00:00
|
|
|
[package]
|
|
|
|
name = "jinux-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"
|
2023-05-30 08:34:28 +00:00
|
|
|
bytes = { version = "1.4.0", default-features = false }
|
2023-05-31 02:46:51 +00:00
|
|
|
align_ext = { path = "../../../framework/libs/align_ext" }
|
2023-03-26 05:20:12 +00:00
|
|
|
jinux-frame = { path = "../../../framework/jinux-frame" }
|
|
|
|
jinux-pci = { path = "../pci" }
|
|
|
|
jinux-util = { path = "../../libs/jinux-util" }
|
2023-07-04 15:16:08 +00:00
|
|
|
pod = { git = "https://github.com/jinzhao-dev/pod", rev = "71e59ec" }
|
2023-04-10 03:12:42 +00:00
|
|
|
component = { path = "../../libs/comp-sys/component" }
|
2023-02-27 08:18:04 +00:00
|
|
|
log = "0.4"
|
2023-04-17 08:11:36 +00:00
|
|
|
int-to-c-enum = { path = "../../libs/int-to-c-enum" }
|
2022-11-22 08:42:26 +00:00
|
|
|
|
|
|
|
[features]
|