osdev5/fs/memfs/Cargo.toml

16 lines
309 B
TOML
Raw Permalink Normal View History

[package]
name = "memfs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
vfs = { path = "../vfs" }
fs-macros = { path = "../macros" }
2021-11-11 20:45:54 +02:00
libsys = { path = "../../libsys" }
2021-10-26 00:59:43 +03:00
[features]
cow = []
default = ["cow"]