-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (25 loc) · 895 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
28
29
30
[package]
name = "os"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "1.2.1"
buddy_system_allocator = "0.6"
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
log = "0.4"
riscv = { git = "https://github.com/rcore-os/riscv", features = ["inline-asm"] }
spin = "0.9"
lock_api = "=0.4.6"
xmas-elf = "0.7.0"
#virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "70b5850" }
easy-fs = { path = "../easy-fs" }
sbi-rt = { version = "0.0.2", features = ["legacy"] }
lose-net-stack = { git = "https://github.com/yfblock/lose-net-stack", rev = "db42380" }
embedded-graphics = "0.7.1"
tinybmp = "0.3.1"
volatile = "0.3"
[profile.release]
debug = true
opt-level = 0