diff options
| author | Steven Fackler <[email protected]> | 2015-11-16 21:11:00 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-11-16 21:11:00 -0800 |
| commit | 094e8e5b3e6eef13b03fd8c5b67b4aaf81af5d5c (patch) | |
| tree | 21e7a32e45992656ddefbf95c3179eb0f914b865 /openssl-sys/Cargo.toml | |
| parent | Merge branch 'release-v0.6.7' into release (diff) | |
| parent | Release v0.7.0 (diff) | |
| download | rust-openssl-0.7.0.tar.xz rust-openssl-0.7.0.zip | |
Merge branch 'release-v0.7.0' into releasev0.7.0
Diffstat (limited to 'openssl-sys/Cargo.toml')
| -rw-r--r-- | openssl-sys/Cargo.toml | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 045e15eb..6d625e7a 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.6.7" +version = "0.7.0" 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.6.7/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.0/openssl_sys" links = "openssl" build = "build.rs" @@ -17,15 +17,15 @@ tlsv1_1 = [] dtlsv1 = [] dtlsv1_2 = [] sslv2 = [] +sslv3 = [] aes_xts = [] aes_ctr = [] npn = [] alpn = [] rfc5114 = [] -ecdh_auto = [] [dependencies] -libc = "0.1" +libc = "0.2" [build-dependencies] pkg-config = "0.3" @@ -39,3 +39,17 @@ libressl-pnacl-sys = "2.1.0" 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" |