Files
RedBear-OS/Cargo.toml
T
Jeremy Soller 260bc1e1e8 Fix cargo doc
2017-09-26 19:17:49 -06:00

32 lines
590 B
TOML

[package]
name = "redoxfs"
description = "The Redox Filesystem"
repository = "https://github.com/redox-os/redoxfs"
version = "0.2.0"
license-file = "LICENSE"
readme = "README.md"
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
[lib]
name = "redoxfs"
path = "src/lib.rs"
[[bin]]
name = "redoxfs"
path = "src/bin/mount.rs"
doc = false
[[bin]]
name = "redoxfs-mkfs"
path = "src/bin/mkfs.rs"
doc = false
[dependencies]
spin = { git = "https://github.com/messense/spin-rs", rev = "020f1b3f" }
redox_syscall = "0.1"
[target.'cfg(unix)'.dependencies]
fuse = "0.3"
libc = "0.2"
time = "0.1"