diff options
| author | Steven Fackler <[email protected]> | 2016-11-05 20:06:50 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-11-05 20:06:50 -0700 |
| commit | a0b56c437803a08413755928040a0970a93a7b83 (patch) | |
| tree | 0f21848301b62d6078eafaee10e513df4163087b /openssl-sys/Cargo.toml | |
| parent | Merge branch 'release-v0.8.3' into release (diff) | |
| parent | Release v0.9.0 (diff) | |
| download | rust-openssl-0.9.0.tar.xz rust-openssl-0.9.0.zip | |
Merge branch 'release-v0.9.0' into releasev0.9.0
Diffstat (limited to 'openssl-sys/Cargo.toml')
| -rw-r--r-- | openssl-sys/Cargo.toml | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index dcdf9d1a..11c20a1c 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,47 +1,21 @@ [package] name = "openssl-sys" -version = "0.7.17" +version = "0.9.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.7.17/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.0/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 = [] -ecdh_auto = [] -hmac_clone = [] - [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.'cfg(windows)'.dependencies] user32-sys = "0.2" gdi32-sys = "0.2" |