forked from Azure-stars/starry-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.2 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
[package]
name = "starry"
version = "0.1.0"
edition = "2021"
authors = [
"Azure-stars <Azure_stars@126.com>",
"Yuekai Jia <equation618@gmail.com>",
]
homepage = "https://github.com/arceos-org/arceos"
repository = "https://github.com/arceos-org/starry-next"
[dependencies]
log = "0.4"
linkme = "0.3"
axerrno = "0.1"
memory_addr = "0.3"
xmas-elf = "0.9"
bitflags = "2.6"
kernel-elf-parser = "0.1.0"
num_enum = { version = "0.7", default-features = false }
syscalls = { version = "0.6", default-features = false }
axstd = { git = "https://github.com/arceos-org/arceos.git", features = [
"paging",
"fs",
] }
axhal = { git = "https://github.com/arceos-org/arceos.git", features = [
"uspace",
] }
axmm = { git = "https://github.com/arceos-org/arceos.git" }
axtask = { git = "https://github.com/arceos-org/arceos.git" }
axsync = { git = "https://github.com/arceos-org/arceos.git" }
axruntime = { git = "https://github.com/arceos-org/arceos.git", features = [
"multitask",
] }
arceos_posix_api = { git = "https://github.com/arceos-org/arceos.git", features = [
"fd",
"fs",
"uspace",
] }
[target.'cfg(target_arch = "x86_64")'.dependencies]
x86 = "0.52"
[build-dependencies]
toml_edit = "0.22"