forked from sfackler/rust-openssl
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-v0.7.3' into release
- Loading branch information
Showing
30 changed files
with
1,381 additions
and
1,205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,29 @@ | ||
language: rust | ||
sudo: false | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-arm-linux-gnueabihf | ||
rust: | ||
- nightly | ||
- beta | ||
- stable | ||
- 1.4.0 | ||
os: | ||
- osx | ||
- linux | ||
env: | ||
global: | ||
- FEATURES="tlsv1_2 tlsv1_1 dtlsv1 dtlsv1_2 sslv2 sslv3 aes_xts aes_ctr npn alpn rfc5114 ecdh_auto pkcs5_pbkdf2_hmac" | ||
matrix: | ||
- TEST_FEATURES=false | ||
- TEST_FEATURES=true | ||
matrix: | ||
# include: | ||
# - os: linux | ||
# env: TARGET=arm-unknown-linux-gnueabihf TEST_FEATURES=true | ||
# rust: 1.4.0 | ||
exclude: | ||
- os: osx | ||
env: TEST_FEATURES=true | ||
before_install: | ||
- (test $TRAVIS_OS_NAME == "osx" || ./openssl/test/build.sh) | ||
- ./openssl/test/build.sh | ||
script: | ||
- (test $TRAVIS_OS_NAME != "osx" || (cd openssl && cargo test)) | ||
- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && OPENSSL_LIB_DIR=$HOME/openssl/lib OPENSSL_INCLUDE_DIR=$HOME/openssl/include LD_LIBRARY_PATH=$HOME/openssl/lib:$LD_LIBRARY_PATH PATH=$HOME/openssl/bin:$PATH cargo test)) | ||
- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && OPENSSL_LIB_DIR=$HOME/openssl/lib OPENSSL_INCLUDE_DIR=$HOME/openssl/include LD_LIBRARY_PATH=$HOME/openssl/lib:$LD_LIBRARY_PATH PATH=$HOME/openssl/bin:$PATH cargo test --features "$FEATURES")) | ||
- ./openssl/test/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "openssl-sys-extras" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
authors = ["Steven Fackler <[email protected]>"] | ||
license = "MIT" | ||
description = "Extra FFI bindings to OpenSSL that require a C shim" | ||
repository = "https://github.com/sfackler/rust-openssl" | ||
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.2/openssl_sys_extras" | ||
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.3/openssl_sys_extras" | ||
build = "build.rs" | ||
|
||
[features] | ||
ecdh_auto = [] | ||
|
||
[dependencies] | ||
libc = "0.2" | ||
openssl-sys = { version = "0.7.1", path = "../openssl-sys" } | ||
openssl-sys = { version = "0.7.3", path = "../openssl-sys" } | ||
|
||
[build-dependencies] | ||
gcc = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "openssl-sys" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
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" | ||
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.3/openssl_sys" | ||
links = "openssl" | ||
build = "build.rs" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "openssl" | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
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.2/openssl" | ||
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.3/openssl" | ||
readme = "../README.md" | ||
keywords = ["crypto", "tls", "ssl", "dtls"] | ||
build = "build.rs" | ||
|
@@ -29,8 +29,8 @@ pkcs5_pbkdf2_hmac = ["openssl-sys/pkcs5_pbkdf2_hmac"] | |
bitflags = ">= 0.2, < 0.4" | ||
lazy_static = "0.1" | ||
libc = "0.2" | ||
openssl-sys = { version = "0.7.1", path = "../openssl-sys" } | ||
openssl-sys-extras = { version = "0.7.1", path = "../openssl-sys-extras" } | ||
openssl-sys = { version = "0.7.3", path = "../openssl-sys" } | ||
openssl-sys-extras = { version = "0.7.3", path = "../openssl-sys-extras" } | ||
|
||
[build-dependencies] | ||
gcc = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.