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
C0ffeeCode d582aca73f
Replace outdated rust-crypto dependency:
`rust-crypto` has not been updated for 8 years.
One of its dependencies, `rustc-serialize` is deprecated and does not build on Redox.

builts on `ed324eb4391491c3b1897a8ee0671533ccb41c13`
2024-09-27 21:55:10 +02:00

48 lines
968 B
TOML

[package]
name = "redox-ssh"
version = "0.1.0"
edition = "2021"
authors = ["Thomas Gatzweiler <mail@thomasgatzweiler.com>"]
[lib]
name = "ssh"
path = "src/lib.rs"
[[bin]]
name = "ssh"
path = "src/bin/ssh.rs"
doc = false
[[bin]]
name = "sshd"
path = "src/bin/sshd.rs"
doc = false
[[bin]]
name = "ssh-keygen"
path = "src/bin/ssh-keygen.rs"
doc = false
[dependencies]
byteorder = "^1.5.0"
log = "^0.4.22"
num-bigint = "0.4.6"
rand = "^0.8.5"
# This crate is deprecated in favor of serde:
# rustc-serialize = "^0.3.25"
# Not updated for 8 years, depends and blocks build on Redox
# rust-crypto = "^0.2.36"
curve25519-dalek = "^4.1.3"
ed25519-dalek = { version = "^2.1.1", features = ["rand_core"] }
sha2 = { version = "^0.10.8" }
hmac = { version = "^0.12.1", features = ["std", "reset"] }
ctr = "^0.9.2"
aes = "^0.8.4"
[target.'cfg(not(target_os = "redox"))'.dependencies]
libc = "^0.2.159"
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.2"