-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (46 loc) · 1.16 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
[package]
name = "thrussh"
description = "A client and server SSH library. Memory-safe, doesn't do its own crypto (based on *ring*)."
keywords = ["ssh"]
version = "0.9.1"
authors = ["Pierre-Étienne Meunier <[email protected]>"]
repository = "https://pijul.org/thrussh"
homepage = "https://pijul.org/thrussh"
documentation = "https://docs.rs/thrussh"
license = "Apache-2.0"
include = [
"Cargo.toml",
"src/auth.rs",
"src/encoding.rs",
"src/kex.rs",
"src/key.rs",
"src/lib.rs",
"src/msg.rs",
"src/negotiation.rs",
"src/pty.rs",
"src/session.rs",
"src/sshbuffer.rs",
"src/bin/client.rs",
"src/bin/server.rs",
"src/cipher/chacha20poly1305.rs",
"src/cipher/clear.rs",
"src/cipher/mod.rs",
"src/client/mod.rs",
"src/client/encrypted.rs",
"src/server/mod.rs",
"src/server/encrypted.rs"
]
[dependencies]
arrayref = "0.3"
byteorder = "0.5"
bitflags = "0.7"
log = "0.3"
ring = "0.6.3"
rustc-serialize = "0.3"
untrusted = "0.3.1"
cryptovec = "0.3"
tokio-core = "0.1"
futures = "0.1"
env_logger = "0.3"
[dev-dependencies]
tempdir="0.3"