Files
RedBear-OS/Cargo.toml
T
2016-10-24 12:22:13 -06:00

36 lines
639 B
TOML

[package]
name = "userutils"
version = "0.1.0"
[[bin]]
name = "getty"
path = "src/bin/getty.rs"
[[bin]]
name = "id"
path = "src/bin/id.rs"
[[bin]]
name = "login"
path = "src/bin/login.rs"
[[bin]]
name = "su"
path = "src/bin/su.rs"
[[bin]]
name = "sudo"
path = "src/bin/sudo.rs"
[dependencies]
syscall = { path = "../../syscall/" }
termion = "*"
[dependencies.argon2rs]
git = "https://github.com/redox-os/argon2rs.git"
default-features = false
[replace]
"libc:0.2.17" = { git = "https://github.com/redox-os/liblibc.git", branch = "new_kernel" }
"rustc-serialize:0.3.19" = { git = "https://github.com/redox-os/rustc-serialize.git" }