mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-24 10:26:25 +04:00
85e2f4d3b6
-------- The user of easy-fs can specify the sync primitive used by easy-fs via lock_api::RawMutex. Add unittests for easy-fs. Expand the size of the bootstack to 1MiB. After that, the BlockCacheMgr can be successfully initialized.
23 lines
670 B
TOML
23 lines
670 B
TOML
[package]
|
|
name = "os"
|
|
version = "0.1.0"
|
|
authors = ["Yifan Wu <shinbokuow@163.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
riscv = { git = "https://github.com/rcore-os/riscv", features = ["inline-asm"] }
|
|
lazy_static = { version = "1.4.0", features = ["spin_no_std"] }
|
|
buddy_system_allocator = "0.6"
|
|
bitflags = "1.2.1"
|
|
xmas-elf = "0.7.0"
|
|
virtio-drivers = { git = "https://github.com/rcore-os/virtio-drivers", rev = "4ee80e5" }
|
|
easy-fs = { path = "../easy-fs" }
|
|
log = "0.4"
|
|
sbi-rt = { version = "0.0.2", features = ["legacy"] }
|
|
lock_api = "0.4.11"
|
|
|
|
[profile.release]
|
|
debug = true
|