commit
b29c7eacb1
|
|
@ -292,10 +292,10 @@ workflows:
|
||||||
library: libressl
|
library: libressl
|
||||||
version: 2.5.5
|
version: 2.5.5
|
||||||
- linux:
|
- linux:
|
||||||
name: x86_64-libressl-3.0.1
|
name: x86_64-libressl-3.0.2
|
||||||
target: x86_64-unknown-linux-gnu
|
target: x86_64-unknown-linux-gnu
|
||||||
library: libressl
|
library: libressl
|
||||||
version: 3.0.1
|
version: 3.0.2
|
||||||
- macos:
|
- macos:
|
||||||
name: macos
|
name: macos
|
||||||
- macos:
|
- macos:
|
||||||
|
|
|
||||||
|
|
@ -203,6 +203,7 @@ See rust-openssl README for more information:
|
||||||
(2, 9, _) => ('2', '9', 'x'),
|
(2, 9, _) => ('2', '9', 'x'),
|
||||||
(3, 0, 0) => ('3', '0', '0'),
|
(3, 0, 0) => ('3', '0', '0'),
|
||||||
(3, 0, 1) => ('3', '0', '1'),
|
(3, 0, 1) => ('3', '0', '1'),
|
||||||
|
(3, 0, _) => ('3', '0', 'x'),
|
||||||
_ => version_error(),
|
_ => version_error(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -243,7 +244,7 @@ fn version_error() -> ! {
|
||||||
"
|
"
|
||||||
|
|
||||||
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
|
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
|
||||||
through 3.0.1, but a different version of OpenSSL was found. The build is now aborting
|
through 3.0.x, but a different version of OpenSSL was found. The build is now aborting
|
||||||
due to this version mismatch.
|
due to this version mismatch.
|
||||||
|
|
||||||
"
|
"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue