-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (50 loc) · 1.26 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
[package]
name = "thrussh-keys"
version = "0.9.5"
authors = ["Pierre-Étienne Meunier <[email protected]>"]
description = "Deal with SSH keys: load them, decrypt them, call an SSH agent."
keywords = ["ssh"]
repository = "https://nest.pijul.com/pijul_org/thrussh"
homepage = "https://pijul.org/thrussh"
documentation = "https://docs.rs/thrussh-keys"
license = "Apache-2.0"
include = [
"Cargo.toml",
"src/lib.rs",
"src/pem.rs",
"src/agent/mod.rs",
"src/agent/msg.rs",
"src/agent/server.rs",
"src/agent/client.rs",
"src/bcrypt_pbkdf.rs",
"src/blowfish.rs",
"src/encoding.rs",
"src/format/mod.rs",
"src/format/openssh.rs",
"src/format/pkcs5.rs",
"src/format/pkcs8.rs",
"src/key.rs",
"src/signature.rs"
]
[dependencies]
log = "0.3"
base64 = "0.8"
byteorder = "1.2"
tokio-core = "0.1"
tokio-io = "0.1"
futures = "0.1"
cryptovec = "0.4"
error-chain = "0.11"
hex = "0.3"
yasna = "0.1"
num-bigint = { version = "0.1", default-features = false }
num-integer = { version = "0.1", default-features = false }
openssl = "0.10"
bit-vec = "0.4"
thrussh-libsodium = "0.1"
serde_derive = "1.0"
serde = "1.0"
[dev-dependencies]
env_logger = "0.3"
tempdir="0.3"
tokio-uds = "0.1"