summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6a082c8478cdb17815a33f272708023bc9c0ff0b (plain)
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
[package]
name = "ssh2"
version = "0.2.14"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
keywords = ["ssh"]
readme = "README.md"
repository = "https://github.com/alexcrichton/ssh2-rs"
homepage = "https://github.com/alexcrichton/ssh2-rs"
documentation = "http://alexcrichton.com/ssh2-rs"
description = """
Bindings to libssh2 for interacting with SSH servers and executing remote
commands, forwarding local ports, etc.
"""

[[test]]
name = "all"

[dependencies]
bitflags = "0.1"
libc = "0.2"
libssh2-sys = { path = "libssh2-sys", version = "0.1.40" }

[target."cfg(unix)".dependencies]
openssl-sys = "0.9"

[dev-dependencies]
tempdir = "0.3"