33 lines
557 B
TOML
33 lines
557 B
TOML
[package]
|
|
name = "redoxfs"
|
|
description = "The Redox Filesystem"
|
|
repository = "https://github.com/redox-os/redoxfs"
|
|
version = "0.1.0"
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
authors = ["Jeremy Soller <jackpot51@gmail.com>"]
|
|
|
|
[lib]
|
|
name = "redoxfs"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "redoxfs"
|
|
path = "scheme/main.rs"
|
|
|
|
[[bin]]
|
|
name = "redoxfs-fuse"
|
|
path = "fuse/main.rs"
|
|
|
|
[[bin]]
|
|
name = "redoxfs-utility"
|
|
path = "utility/main.rs"
|
|
|
|
[dependencies]
|
|
spin = "*"
|
|
syscall = {path = "../../syscall/"}
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
fuse = "0.2"
|
|
time = "*"
|