40 lines
676 B
TOML
40 lines
676 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 = "passwd"
|
|
path = "src/bin/passwd.rs"
|
|
|
|
[[bin]]
|
|
name = "su"
|
|
path = "src/bin/su.rs"
|
|
|
|
[[bin]]
|
|
name = "sudo"
|
|
path = "src/bin/sudo.rs"
|
|
|
|
[dependencies]
|
|
rand = { git = "https://github.com/rust-lang-nursery/rand.git" }
|
|
redox_syscall = { git = "https://github.com/redox-os/syscall.git" }
|
|
termion = "1.1"
|
|
|
|
[dependencies.argon2rs]
|
|
git = "https://github.com/redox-os/argon2rs.git"
|
|
default-features = false
|
|
|
|
[replace]
|
|
"libc:0.2.17" = { git = "https://github.com/rust-lang/libc.git" }
|