2021-10-25 16:41:30 +03:00
|
|
|
[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" }
|
2021-11-11 22:19:21 +02:00
|
|
|
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"]
|