mirror of
https://gitlab.redox-os.org/CoffeeCode/redox-ssh.git
synced 2025-12-28 15:02:18 +01:00
26 lines
397 B
TOML
26 lines
397 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"
|
|
rust-crypto = "^0.2"
|
|
rand = "^0.3"
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox_syscall = "0.1"
|
|
|