Files
RedBear-OS/Cargo.toml
T
MggMuggins e58815f89c Rudimentary support for permissions
I sorta OOP'ed this, combining the logic of what needs to happen for
each config object with those objects. More things are coming, this is a
very WIP commit.
2018-07-27 10:55:11 -05:00

26 lines
574 B
TOML

[package]
name = "redox_installer"
version = "0.2.0"
[[bin]]
name = "redox_installer"
path = "src/bin/installer.rs"
[lib]
name = "redox_installer"
path = "src/lib.rs"
[dependencies]
arg_parser = { git = "https://github.com/redox-os/arg-parser.git" }
argon2rs = { version = "0.2", default-features = false }
liner = "0.1"
libc = "0.2"
failure = "0.1"
pkgutils = { git = "https://github.com/redox-os/pkgutils.git" }
rand = "0.3"
redoxfs = "0.3"
serde = "0.8"
serde_derive = "0.8"
termion = "1.5.1"
toml = { version = "0.2", default-features = false, features = ["serde"] }