-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 963 Bytes
/
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
[build]
target = "riscv64gc-unknown-none-elf"
[package]
name = "xxos"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
#members = [".", "macros"]
exclude = ["mkefs", "user"]
[dependencies]
#virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers" }
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
fdt = "0.1.4"
# xx_mutex_lock = { git = "https://github.com/ZyLqb/xx_mutex_lock.git", branch = "master" }
xxos_alloc = { git = "https://github.com/ZyLqb/xx_alloc.git", branch = "master" }
buddy_system_allocator = "0.6"
xxos_log = { git = "https://github.com/MEssap/xxos_log.git", branch = "main" }
light_fs = { git = "https://github.com/MEssap/light_fs.git", branch = "main" }
macros = { path = "./macros" }
spin = "0.9.8"
xmas-elf = "0.9.1"
bitflags = "2.5.0"
sbi-rt = { version = "0.0.2", features = ["legacy"] }