summaryrefslogtreecommitdiff
path: root/libssh2-sys/Cargo.toml
blob: 6a6ec555fe3a451e0e1b5710487a87da99b32e3b (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
[package]
name = "libssh2-sys"
version = "0.1.6"
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"

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

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