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.
18 lines
397 B
18 lines
397 B
[package]
|
|
name = "simple-filesystem"
|
|
version = "0.0.1"
|
|
authors = ["WangRunji <wangrunji0408@163.com>"]
|
|
|
|
[[bin]]
|
|
name = "mksfs"
|
|
path = "src/bin/mksfs.rs"
|
|
required-features = ["std"]
|
|
|
|
[dependencies]
|
|
bit-vec = { default-features = false, git = "https://github.com/AltSysrq/bit-vec.git" } # default-features contains 'std'
|
|
static_assertions = "0.2.5"
|
|
spin = "0.4"
|
|
|
|
[features]
|
|
debug_print = []
|
|
std = [] |