-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Cargo.toml
43 lines (41 loc) · 895 Bytes
/
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
[workspace]
members = [
"russh-keys",
"russh",
"russh-config",
"cryptovec",
"pageant",
"russh-util",
]
resolver = "2"
[patch.crates-io]
russh = { path = "russh" }
russh-keys = { path = "russh-keys" }
russh-cryptovec = { path = "cryptovec" }
russh-config = { path = "russh-config" }
[workspace.dependencies]
aes = "0.8"
async-trait = "0.1"
byteorder = "1.4"
bytes = "1.7"
digest = "0.10"
delegate = "0.13"
futures = "0.3"
hmac = "0.12"
log = "0.4"
rand = "0.8"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = { version = "0.10", features = ["oid"] }
signature = "2.2"
ssh-encoding = { version = "0.2", features = ["bytes"] }
ssh-key = { version = "0.6", features = [
"ed25519",
"rsa",
"p256",
"p384",
"p521",
"encryption",
] }
thiserror = "1.0"
tokio = { version = "1.17.0" }
tokio-stream = { version = "0.1", features = ["net", "sync"] }