diff options
Diffstat (limited to 'openssl-sys/Cargo.toml')
| -rw-r--r-- | openssl-sys/Cargo.toml | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index c203b6d6..e09c2020 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.7.14" +version = "0.7.15" 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.14/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.15/openssl_sys" links = "openssl" build = "build.rs" @@ -23,6 +23,8 @@ npn = [] alpn = [] rfc5114 = [] pkcs5_pbkdf2_hmac = [] +ecdh_auto = [] +hmac_clone = [] [dependencies] libc = "0.2" @@ -40,15 +42,6 @@ libressl-pnacl-sys = "2.1.0" 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.dependencies] -user32-sys = "0.2" -gdi32-sys = "0.2" -[target.x86_64-pc-windows-gnu.dependencies] -user32-sys = "0.2" -gdi32-sys = "0.2" -[target.i686-pc-windows-msvc.dependencies] -user32-sys = "0.2" -gdi32-sys = "0.2" -[target.x86_64-pc-windows-msvc.dependencies] +[target.'cfg(windows)'.dependencies] user32-sys = "0.2" gdi32-sys = "0.2" |