-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (85 loc) · 2.71 KB
/
Copy pathCargo.toml
File metadata and controls
98 lines (85 loc) · 2.71 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
[workspace]
resolver = "2"
members = [
"modules/axalloc",
"modules/axconfig",
"modules/axdisplay",
"modules/axdriver",
"modules/axfs",
"modules/axhal",
"modules/axlog",
"modules/axmm",
"modules/axnet",
"modules/axns",
"modules/axruntime",
"modules/axsync",
"modules/axtask",
"modules/axipi",
"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" }
axdriver = { path = "modules/axdriver" }
axfs = { path = "modules/axfs" }
axhal = { path = "modules/axhal" }
axlog = { path = "modules/axlog" }
axmm = { path = "modules/axmm" }
axnet = { path = "modules/axnet" }
axns = { path = "modules/axns" }
axruntime = { path = "modules/axruntime" }
axsync = { path = "modules/axsync" }
axtask = { path = "modules/axtask" }
axdma = { path = "modules/axdma" }
axipi = { path = "modules/axipi" }
axio = { version = "0.3.0-pre.1" }
axpoll = "0.3"
cfg-if = "1.0"
chrono = { version = "0.4", default-features = false }
kspin = "0.1"
log = "0.4"
scope-local = "0.1"
spin = "0.10"
rand_core = { version = "0.10.1", default-features = false }
rand_pcg = { version = "0.10.2", default-features = false }
[profile.release]
lto = true
[patch.crates-io]
axsched = { path = "../crates/axsched" }
memory_set = { path = "../crates/memory_set" }
memory_addr = { path = "../crates/memory_addr" }
axfs-ng-vfs = { path = "../crates/axfs-ng-vfs" }
axcpu = { path = "../crates/axcpu" }
axplat-loongarch64-qemu-virt = { path = "../crates/axplat-loongarch64-qemu-virt" }
axplat-riscv64-qemu-virt = { path = "../crates/axplat-riscv64-qemu-virt" }
axio = { path = "../crates/axio" }
page_table_multiarch = { path = "../crates/page_table_multiarch" }
[patch."https://github.com/arceos-org/allocator.git"]
allocator = { path = "../crates/allocator" }
[patch."https://github.com/rcore-os/smoltcp.git"]
smoltcp = { path = "../crates/smoltcp" }