blob: d20992c8c263de55cd41dd4479721bc88df55a8a (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
[package]
name = "openssl-sys"
version = "0.7.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/v0.7.2/openssl_sys"
links = "openssl"
build = "build.rs"
[features]
tlsv1_2 = []
tlsv1_1 = []
dtlsv1 = []
dtlsv1_2 = []
sslv2 = []
sslv3 = []
aes_xts = []
aes_ctr = []
npn = []
alpn = []
rfc5114 = []
pkcs5_pbkdf2_hmac = []
[dependencies]
libc = "0.2"
[build-dependencies]
pkg-config = "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"
# Only here to make sure we link to these in a static build on Windows
[target.i686-pc-windows-gnu]
user32-sys = "0.1"
gdi32-sys = "0.1"
[target.x86_64-pc-windows-gnu]
user32-sys = "0.1"
gdi32-sys = "0.1"
[target.i686-pc-windows-msvc]
user32-sys = "0.1"
gdi32-sys = "0.1"
[target.x86_64-pc-windows-msvc]
user32-sys = "0.1"
gdi32-sys = "0.1"
|