-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 962 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 962 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
[package]
authors = [
"KeYang Hu <keyang.hu@qq.com>",
"Mingxian Su <aarkegz@gmail.com>",
"DeBin Luo <luodeb@outlook.com>",
]
categories = ["embedded", "no-std"]
description = "ArceOS-Hypervisor guest address space management module"
edition = "2024"
keywords = ["hypervisor", "address-space"]
license = "Apache-2.0"
name = "axaddrspace"
repository = "https://github.com/arceos-hypervisor/axaddrspace"
version = "0.3.0"
[features]
arm-el2 = ["page_table_entry/arm-el2"]
default = ["arm-el2"]
[dependencies]
bit_field = "0.10"
bitflags = "2.9"
cfg-if = "1.0"
lazyinit = "0.2"
log = "0.4"
numeric-enum-macro = "0.2"
# Operating system independent modules provided by ArceOS.
axerrno = "0.2.0"
memory_addr = "0.4"
memory_set = "0.4"
page_table_entry = "0.6"
page_table_multiarch = "0.6"
[target.'cfg(any(target_arch = "x86_64", doc))'.dependencies]
x86 = "0.52"
[dev-dependencies]
lazy_static = "1.5"
spin = "0.10"
assert_matches = "1.5.0"
axin = "0.1.0"