diff options
| author | Steven Fackler <[email protected]> | 2016-08-11 21:01:27 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-11 21:01:27 -0700 |
| commit | 652326003cefe215dbfc838051e6114515cc5190 (patch) | |
| tree | 22dc99a726321cd8228004c34c40ca4a0648c594 /openssl/Cargo.toml | |
| parent | Merge branch 'release-v0.7.14' into release (diff) | |
| parent | Release openssl-sys v0.7.15, openssl v0.8.0 (diff) | |
| download | rust-openssl-openssl-sys-v0.7.15.tar.xz rust-openssl-openssl-sys-v0.7.15.zip | |
Merge branch 'release-v0.7.15-sys-v0.8.0' into releaseopenssl-v0.8.0openssl-sys-v0.7.15
Diffstat (limited to 'openssl/Cargo.toml')
| -rw-r--r-- | openssl/Cargo.toml | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index ed90a6a5..a5d0de8b 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "openssl" -version = "0.7.14" +version = "0.8.0" authors = ["Steven Fackler <[email protected]>"] license = "Apache-2.0" description = "OpenSSL bindings" repository = "https://github.com/sfackler/rust-openssl" -documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.14/openssl" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.8.0/openssl" readme = "../README.md" keywords = ["crypto", "tls", "ssl", "dtls"] build = "build.rs" @@ -23,20 +23,25 @@ aes_ctr = ["openssl-sys/aes_ctr"] npn = ["openssl-sys/npn"] alpn = ["openssl-sys/alpn"] rfc5114 = ["openssl-sys/rfc5114"] -ecdh_auto = ["openssl-sys-extras/ecdh_auto"] +ecdh_auto = ["openssl-sys/ecdh_auto"] pkcs5_pbkdf2_hmac = ["openssl-sys/pkcs5_pbkdf2_hmac"] +hmac_clone = ["openssl-sys/hmac_clone"] -nightly = [] +c_helpers = ["gcc"] +x509_clone = ["c_helpers"] +x509_generator_request = ["c_helpers"] +ssl_context_clone = ["c_helpers"] +hmac = ["c_helpers"] +dh_from_params = ["c_helpers"] [dependencies] -bitflags = ">= 0.5.0, < 0.8.0" +bitflags = "0.7" lazy_static = "0.2" libc = "0.2" -openssl-sys = { version = "0.7.14", path = "../openssl-sys" } -openssl-sys-extras = { version = "0.7.14", path = "../openssl-sys-extras" } +openssl-sys = { version = "0.7.15", path = "../openssl-sys" } [build-dependencies] -gcc = "0.3" +gcc = { version = "0.3", optional = true } [dev-dependencies] rustc-serialize = "0.3" |