forked from arceos-org/arceos
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (101 loc) · 2.99 KB
/
Cargo.toml
File metadata and controls
110 lines (101 loc) · 2.99 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[workspace]
resolver = "2"
members = [
"modules/axalloc",
"modules/axconfig",
"modules/axdisplay",
"modules/axdma",
"modules/axdriver",
"modules/axfs",
"modules/axhal",
"modules/axinput",
"modules/axipi",
"modules/axlog",
"modules/axmm",
"modules/axnet",
"modules/axruntime",
"modules/axsync",
"modules/axtask",
"api/axfeat",
"api/arceos_api",
"api/arceos_posix_api",
"ulib/axstd",
"ulib/axlibc",
"examples/helloworld",
"examples/helloworld-myplat",
"examples/httpclient",
"examples/httpserver",
"examples/shell",
]
[workspace.package]
version = "0.2.0"
edition = "2024"
authors = ["Yuekai Jia <equation618@gmail.com>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
homepage = "https://github.com/arceos-org/arceos"
documentation = "https://arceos-org.github.io/arceos"
repository = "https://github.com/arceos-org/arceos"
keywords = ["arceos", "kernel"]
categories = ["os", "no-std"]
[workspace.dependencies]
axstd = { path = "ulib/axstd" }
axlibc = { path = "ulib/axlibc" }
arceos_api = { path = "api/arceos_api" }
arceos_posix_api = { path = "api/arceos_posix_api" }
axfeat = { path = "api/axfeat" }
axalloc = { path = "modules/axalloc" }
axconfig = { path = "modules/axconfig" }
axdisplay = { path = "modules/axdisplay" }
axdma = { path = "modules/axdma" }
axdriver = { path = "modules/axdriver" }
axfs = { path = "modules/axfs" }
axhal = { path = "modules/axhal" }
axinput = { path = "modules/axinput" }
axipi = { path = "modules/axipi" }
axlog = { path = "modules/axlog" }
axmm = { path = "modules/axmm" }
axnet = { path = "modules/axnet" }
axruntime = { path = "modules/axruntime" }
axsync = { path = "modules/axsync" }
axtask = { path = "modules/axtask" }
axallocator = { version = "0.2", features = ["axerrno"] }
axbacktrace = "0.1"
axdriver_base = "0.1.4-preview.3"
axdriver_block = "0.1.4-preview.3"
axdriver_display = "0.1.4-preview.3"
axdriver_input = "0.1.4-preview.3"
axdriver_net = "0.1.4-preview.3"
axdriver_pci = "0.1.4-preview.3"
axdriver_virtio = "0.1.4-preview.3"
axdriver_vsock = "0.1.4-preview.3"
axerrno = "0.2"
axfs-ng-vfs = "0.1"
axio = "0.3.0-pre.1"
axklib = "0.2"
axplat = "0.3.1-pre.1"
axplat-aarch64-bsta1000b = "0.3.1-pre.1"
axplat-aarch64-phytium-pi = "0.3.1-pre.1"
axplat-aarch64-qemu-virt = "0.3.1-pre.1"
axplat-aarch64-raspi = "0.3.1-pre.1"
axplat-loongarch64-qemu-virt = "0.3.1-pre.1"
axplat-riscv64-qemu-virt = "0.3.1-pre.1"
axplat-x86-pc = "0.3.1-pre.1"
axpoll = "0.1"
bindgen = "0.72"
cfg-if = "1.0"
chrono = { version = "0.4", default-features = false }
crate_interface = "0.1.4"
ctor_bare = "0.2"
enum_dispatch = "0.3"
event-listener = { version = "5.4.0", default-features = false }
kernel_guard = "0.1"
kspin = "0.1"
lazyinit = "0.2"
lazy_static = { version = "1.5", features = ["spin_no_std"] }
lock_api = { version = "0.4", default-features = false }
log = "0.4"
memory_addr = "0.4"
page_table_multiarch = { version = "0.6", features = ["axerrno"] }
percpu = "0.2"
scope-local = "0.1"
spin = "0.10"