You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
418 B
21 lines
418 B
7 years ago
|
[package]
|
||
6 years ago
|
name = "rcore-fs-ucore"
|
||
|
version = "0.1.0"
|
||
7 years ago
|
authors = ["WangRunji <wangrunji0408@163.com>"]
|
||
6 years ago
|
edition = "2018"
|
||
7 years ago
|
|
||
|
[lib]
|
||
|
crate-type = ["staticlib"]
|
||
|
|
||
|
[profile.dev]
|
||
|
panic = 'abort' # prevent `_Unwind_Resume` link error
|
||
|
|
||
|
[dependencies]
|
||
|
bitflags = "1.0"
|
||
6 years ago
|
static_assertions = "0.3"
|
||
7 years ago
|
simple-filesystem = { path = ".." }
|
||
6 years ago
|
spin = "0.4"
|
||
6 years ago
|
lazy_static = { version = "1.2", features = ["spin_no_std"] }
|
||
|
|
||
|
[features]
|
||
|
debug_print = []
|