forked from Eugeny/russh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (79 loc) · 2.35 KB
/
Cargo.toml
File metadata and controls
84 lines (79 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
authors = ["Pierre-Étienne Meunier <pe@pijul.org>"]
description = "A client and server SSH library."
documentation = "https://docs.rs/russh"
edition = "2018"
homepage = "https://github.com/warp-tech/russh"
keywords = ["ssh"]
license = "Apache-2.0"
name = "russh"
readme = "../README.md"
repository = "https://github.com/warp-tech/russh"
version = "0.46.0-beta.4"
rust-version = "1.65"
[features]
default = ["flate2"]
openssl = ["russh-keys/openssl", "dep:openssl"]
vendored-openssl = ["openssl/vendored", "russh-keys/vendored-openssl"]
legacy-ed25519-pkcs8-parser = ["russh-keys/legacy-ed25519-pkcs8-parser"]
[dependencies]
aes = { workspace = true }
aes-gcm = "0.10"
cbc = { version = "0.1" }
async-trait = { workspace = true }
bitflags = "2.0"
byteorder = { workspace = true }
chacha20 = "0.9"
ctr = "0.9"
curve25519-dalek = "4.1.3"
digest = { workspace = true }
elliptic-curve = { version = "0.13", features = ["ecdh"] }
flate2 = { version = "1.0", optional = true }
futures = { workspace = true }
generic-array = "0.14"
hex-literal = "0.4"
hmac = { workspace = true }
log = { workspace = true }
num-bigint = { version = "0.4", features = ["rand"] }
once_cell = "1.13"
p256 = { version = "0.13", features = ["ecdh"] }
p384 = { version = "0.13", features = ["ecdh"] }
p521 = { version = "0.13", features = ["ecdh"] }
poly1305 = "0.8"
rand = { workspace = true }
rand_core = { version = "0.6.4", features = ["getrandom"] }
russh-cryptovec = { version = "0.7.0", path = "../cryptovec" }
russh-keys = { version = "0.46.0-beta.2", path = "../russh-keys" }
sha1 = { workspace = true }
sha2 = { workspace = true }
ssh-encoding = { workspace = true }
ssh-key = { workspace = true }
subtle = "2.4"
thiserror = { workspace = true }
russh-util = { path = "../russh-util" }
des = "0.8.1"
tokio = { workspace = true, features = ["io-util", "sync", "time"] }
[dev-dependencies]
anyhow = "1.0"
env_logger = "0.11"
clap = { version = "3.2", features = ["derive"] }
tokio = { version = "1.17.0", features = [
"io-std",
"io-util",
"rt-multi-thread",
"time",
"net",
"sync",
"macros",
] }
rand = "0.8.5"
shell-escape = "0.1"
tokio-fd = "0.3"
termion = "2"
ratatui = "0.26.0"
[package.metadata.docs.rs]
features = ["openssl"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
openssl = { workspace = true, optional = true }
russh-sftp = "2.0.5"
tokio = { workspace = true }