-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (31 loc) · 1.29 KB
/
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
29
30
31
32
33
34
35
36
37
38
[package]
name = "axvm"
version = "0.1.0"
edition = "2021"
[features]
default = ["vmx"]
vmx = []
[dependencies]
log = "0.4"
cfg-if = "1.0"
serde = { version = "1.0.204", default-features = false, features = ["derive"] }
toml = { git = "https://github.com/arceos-hypervisor/toml.git", branch = "no_std" }
spin = "0.9"
# System independent crates provided by ArceOS.
axerrno = "0.1.0"
# kspin = "0.1.0"
memory_addr = "0.3.1"
page_table_entry = { version = "0.4.1", features = ["arm-el2"] }
page_table_multiarch = "0.4.1"
percpu = { version = "0.1.4", features = ["arm-el2"] }
# System dependent modules provided by ArceOS-Hypervisor.
axvcpu = { git = "https://github.com/arceos-hypervisor/axvcpu.git" }
axaddrspace = { git = "https://github.com/arceos-hypervisor/axaddrspace.git" }
axdevice = { git = "https://github.com/arceos-hypervisor/axdevice.git" }
axdevice_base = { git = "https://github.com/arceos-hypervisor/axdevice_crates.git" }
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86_vcpu = { git = "https://github.com/arceos-hypervisor/x86_vcpu.git" }
[target.'cfg(target_arch = "riscv64")'.dependencies]
riscv_vcpu = { git = "https://github.com/arceos-hypervisor/riscv_vcpu.git" }
[target.'cfg(target_arch = "aarch64")'.dependencies]
arm_vcpu = { git = "https://github.com/arceos-hypervisor/arm_vcpu.git" }