2022-11-22 08:42:26 +00:00
|
|
|
[package]
|
2023-12-25 03:12:25 +00:00
|
|
|
name = "aster-virtio"
|
2022-11-22 08:42:26 +00:00
|
|
|
version = "0.1.0"
|
2025-12-25 07:17:37 +00:00
|
|
|
edition.workspace = true
|
2022-11-22 08:42:26 +00:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-25 07:37:18 +00:00
|
|
|
aster-bigtcp.workspace = true
|
|
|
|
|
aster-block.workspace = true
|
|
|
|
|
aster-console.workspace = true
|
|
|
|
|
aster-input.workspace = true
|
|
|
|
|
aster-network.workspace = true
|
|
|
|
|
aster-pci.workspace = true
|
|
|
|
|
aster-rights.workspace = true
|
|
|
|
|
aster-softirq.workspace = true
|
|
|
|
|
aster-systree.workspace = true
|
|
|
|
|
aster-util.workspace = true
|
|
|
|
|
bitflags.workspace = true
|
|
|
|
|
component.workspace = true
|
|
|
|
|
int-to-c-enum.workspace = true
|
|
|
|
|
spin.workspace = true
|
|
|
|
|
device-id.workspace = true
|
|
|
|
|
id-alloc.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
ostd.workspace = true
|
2026-01-27 08:35:10 +00:00
|
|
|
ostd-pod.workspace = true
|
2025-12-25 07:37:18 +00:00
|
|
|
typeflags-util.workspace = true
|
2026-01-27 08:35:10 +00:00
|
|
|
zerocopy.workspace = true
|
2025-01-24 16:56:07 +00:00
|
|
|
|
2025-06-22 09:09:03 +00:00
|
|
|
[target.x86_64-unknown-none.dependencies]
|
2026-01-21 09:01:21 +00:00
|
|
|
tdx-guest = { version = "0.2.4", optional = true }
|
2025-06-22 09:09:03 +00:00
|
|
|
|
2025-05-26 15:51:37 +00:00
|
|
|
[features]
|
|
|
|
|
all = ["cvm_guest"]
|
2025-06-22 09:09:03 +00:00
|
|
|
cvm_guest = ["dep:tdx-guest", "ostd/cvm_guest"]
|
2025-05-26 15:51:37 +00:00
|
|
|
|
2025-01-24 16:56:07 +00:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|