1
0
Fork 0
mirror of https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git synced 2025-12-28 15:02:18 +01:00
redox-ssh/Cargo.toml
Thomas Gatzweiler 587f810172 Initial commit
2017-07-12 22:39:08 +02:00

26 lines
392 B
TOML

[package]
name = "redox-ssh"
version = "0.1.0"
authors = ["Thomas Gatzweiler <mail@thomasgatzweiler.com>"]
[lib]
name = "ssh"
path = "src/lib.rs"
[[bin]]
name = "ssh"
path = "src/bin/ssh.rs"
[[bin]]
name = "sshd"
path = "src/bin/sshd.rs"
[dependencies]
byteorder = "^1.0"
log = "^0.3"
nom = "^3.1"
ring = "^0.11.0"
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.1"