summaryrefslogtreecommitdiff
path: root/libssh2-sys/Cargo.toml
blob: 97e8ddeaa6fe3561aa5644b96ef9d65f2617a244 (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
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "libssh2-sys"
version = "0.1.17"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
links = "ssh2"
build = "build.rs"
license = "MIT/Apache-2.0"
repository = "https://github.com/alexcrichton/ssh2-rs"
description = "Native bindings to the libssh2 library"

[lib]
name = "libssh2_sys"
path = "lib.rs"

[dependencies]
libz-sys = "0.1.0"
libc = "0.1"

[target.i686-apple-darwin.dependencies]
openssl-sys = "0.5.0"
[target.x86_64-apple-darwin.dependencies]
openssl-sys = "0.5.0"
[target.i686-unknown-linux-gnu.dependencies]
openssl-sys = "0.5.0"
[target.x86_64-unknown-linux-gnu.dependencies]
openssl-sys = "0.5.0"
[target.aarch64-unknown-linux-gnu.dependencies]
openssl-sys = "0.5.0"
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl-sys = "0.5.0"
[target.i686-unknown-freebsd.dependencies]
openssl-sys = "0.5.0"
[target.x86_64-unknown-freebsd.dependencies]
openssl-sys = "0.5.0"
[target.x86_64-unknown-dragonfly.dependencies]
openssl-sys = "0.5.0"

[build-dependencies]
pkg-config = "0.3"