-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
74 lines (67 loc) · 1.67 KB
/
Cargo.toml
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
[package]
name = "makiko"
version = "0.2.0"
edition = "2021"
authors = ["Jan Špaček <patek.mail@gmail.com>"]
homepage = "https://github.com/honzasp/makiko"
repository = "https://github.com/honzasp/makiko"
documentation = "https://docs.rs/makiko"
license = "Unlicense"
readme = "README.md"
keywords = ["ssh", "ssh-client", "tokio", "async"]
categories = ["network-programming", "asynchronous"]
description = "Asynchronous SSH client library"
[[test]]
name = "compat"
path = "tests/compat/main.rs"
harness = false
[[test]]
name = "keys"
path = "tests/keys/main.rs"
[dependencies]
aes = "0.8"
aes-gcm = "^0.10.0-pre"
base64 = "^0.13"
bcrypt-pbkdf = "0.9"
bytes = "1.1"
cbc = "0.1"
chacha20 = "0.9"
ctr = "0.9"
derivative = "2.2"
ecdsa = {version = "0.14", features = ["sign", "verify"]}
ed25519-dalek = "1.0"
futures-core = "0.3"
guard = "0.5"
hex-literal = "0.3"
hmac = "0.12"
log = "0.4"
num-bigint-dig = {version = "0.8", features = ["rand"]}
p256 = "0.11"
p384 = "0.11"
parking_lot = "0.12"
pem = "1.0"
pin-project = "1.0"
poly1305 = "0.7"
rand = {version = "0.8", features = ["getrandom"]}
rand_0_7 = {version = "0.7", package = "rand"} # because of x25519-dalek
rand_chacha = "0.3"
rsa = {version = "0.6"}
sha-1 = {version = "0.10", default-features = false}
sha2 = "0.10"
thiserror = "1.0"
tokio = {version = "1", features = ["sync"]}
tokio-util = {version = "0.7", features = []}
x25519-dalek = "1.1" # due to issue #89
[dev-dependencies]
anyhow = "1"
bollard = "0.12"
clap = "3.2"
colored = "2.0"
enclose = "1.1"
env_logger = "0.9"
futures = "0.3"
regex = "1.5"
rustix = {version = "0.35", features = ["termios"]}
tokio = {version = "1", features = ["full"]}
[features]
debug_less_secure = []