forked from arceos-org/arceos
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
72 lines (63 loc) · 1.75 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
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
[workspace]
resolver = "2"
members = [
"modules/axalloc",
"modules/axconfig",
"modules/axdisplay",
"modules/axdriver",
"modules/axfs",
"modules/axhal",
"modules/axlog",
"modules/axnet",
"modules/axruntime",
"modules/axsync",
"modules/axtask",
"api/axfeat",
"api/arceos_api",
"api/arceos_posix_api",
"ulib/axstd",
"ulib/axlibc",
"apps/display",
"apps/exception",
"apps/helloworld",
"apps/memtest",
"apps/fs/shell",
"apps/net/echoserver",
"apps/net/httpclient",
"apps/net/httpserver",
"apps/net/udpserver",
"apps/net/bwbench",
"apps/task/parallel",
"apps/task/sleep",
"apps/task/yield",
"apps/task/priority",
"apps/task/tls",
]
[workspace.package]
version = "0.1.0"
authors = ["Yuekai Jia <[email protected]>"]
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" }
axnet = { path = "modules/axnet" }
axruntime = { path = "modules/axruntime" }
axsync = { path = "modules/axsync" }
axtask = { path = "modules/axtask" }
[profile.release]
lto = true