-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 880 Bytes
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 880 Bytes
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
39
40
41
42
43
[package]
name = "x86_vcpu"
version = "0.3.0"
edition = "2024"
authors = [
"Mingxian Su <aarkegz@gmail.com>",
"Keyang Hu <keyang.hu@qq.com>"
]
categories = ["virtualization", "no-std"]
description = "x86 Virtual CPU implementation for the Arceos Hypervisor"
repository = "https://github.com/arceos-hypervisor/x86_vcpu"
keywords = ["x86", "vcpu", "hypervisor", "arceos"]
license = "Apache-2.0"
[dependencies]
log = "0.4.19"
cfg-if = "1.0"
bitflags = "2.2"
bit_field = "0.10"
paste = "1.0.15"
x86 = "0.52"
x86_64 = "0.15"
raw-cpuid = "11.0"
numeric-enum-macro = "0.2"
axerrno = "0.2.0"
page_table_entry = "0.6"
memory_addr = "0.4"
crate_interface = "0.3"
axaddrspace = "0.3"
axvcpu = "0.3"
x86_vlapic = "0.2.2"
axdevice_base = "0.2.2"
axvisor_api = "0.3"
spin = { version = "0.10", default-features = false }
[features]
default = ["vmx"]
tracing = []
vmx = []
svm = []