aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/Cargo.toml
blob: fd1e425a98a73eb0eb6e064802a1c3636020dcfe (plain) (blame)
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
[package]
name = "openssl-sys"
version = "0.6.2"
authors = ["Alex Crichton <[email protected]>",
           "Steven Fackler <[email protected]>"]
license = "MIT"
description = "FFI bindings to OpenSSL"
repository = "https://github.com/sfackler/rust-openssl"
documentation = "https://sfackler.github.io/rust-openssl/doc/openssl_sys"

links = "openssl"
build = "build.rs"

[features]
tlsv1_2 = []
tlsv1_1 = []
dtlsv1 = []
dtlsv1_2 = []
sslv2 = []
aes_xts = []
npn = []

[dependencies]
libc = "0.1"

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

[target.le32-unknown-nacl.dependencies]
libressl-pnacl-sys = "2.1.0"
[target.x86_64-unknown-nacl.dependencies]
libressl-pnacl-sys = "2.1.0"
[target.i686-unknown-nacl.dependencies]
libressl-pnacl-sys = "2.1.0"
[target.arm-unknown-nacl.dependencies]
libressl-pnacl-sys = "2.1.0"