Forked from
redox-os / redoxfs
290 commits behind the upstream repository.
-
Jeremy Soller authoredJeremy Soller authored
This project manages its dependencies using Cargo.
Learn more
Cargo.toml 487 B
[package]
name = "redoxfs"
description = "The Redox Filesystem"
repository = "https://github.com/redox-os/redoxfs"
version = "0.1.1"
license-file = "LICENSE"
readme = "README.md"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
[lib]
name = "redoxfs"
path = "src/lib.rs"
[[bin]]
name = "redoxfs"
path = "mount/main.rs"
[[bin]]
name = "redoxfs-mkfs"
path = "mkfs/main.rs"
[dependencies]
spin = "0.4"
redox_syscall = "0.1"
[target.'cfg(unix)'.dependencies]
fuse = "0.2"
time = "0.1"