This repository was archived by the owner on Feb 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 1.47 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
[package]
name = "arceboot"
version = "0.0.1"
edition = "2024"
authors = ["Zhihang Shao <dio_ro@outlook.com>", "Jingxuan Wei <jensenwei007@gmail.com>"]
[features]
default = ["alloc", "fs", "paging", "virtiodisk"]
alloc = ["axalloc"]
paging = ["axhal/paging", "axmm"]
fs = ["axdriver", "axfs"]
net = ["axdriver", "axnet"]
display = ["axdriver", "axdisplay"]
# Boot Media
virtiodisk = ["axdriver/virtio-blk"]
ramdisk_cpio = []
[dependencies]
axhal = { git = "https://github.com/arceos-org/arceos.git" }
axlog = { git = "https://github.com/arceos-org/arceos.git" }
axconfig = { git = "https://github.com/arceos-org/arceos.git" }
axsync = { git = "https://github.com/arceos-org/arceos.git" }
axalloc = { git = "https://github.com/arceos-org/arceos.git", optional = true }
axmm = { git = "https://github.com/arceos-org/arceos.git", optional = true }
axdriver = { git = "https://github.com/arceos-org/arceos.git", optional = true, features = ["virtio-blk", "virtio-gpu"] }
axfs = { git = "https://github.com/arceos-org/arceos.git", optional = true }
axnet = { git = "https://github.com/arceos-org/arceos.git", optional = true }
axdisplay = { git = "https://github.com/arceos-org/arceos.git", optional = true }
axio = { version = "0.1", features = ["alloc"] }
crate_interface = "0.1"
ctor_bare = "0.2"
cfg-if = "1.0.1"
object = { version = "0.37.1", default-features = false, features = [ "read", "pe" ] }
chrono = { version = "0.4.38", default-features = false }
uefi-raw = "0.11.0"
lazyinit = "0.2.2"