Skip to content

Commit 04ba3af

Browse files
committed
Added support for LibreSSL 3.9.0
1 parent 9f29412 commit 04ba3af

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/ci.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,12 @@ jobs:
183183
bindgen: true
184184
library:
185185
name: libressl
186-
version: 3.8.2
186+
version: 3.8.3
187+
- target: x86_64-unknown-linux-gnu
188+
bindgen: true
189+
library:
190+
name: libressl
191+
version: 3.9.0
187192
- target: x86_64-unknown-linux-gnu
188193
bindgen: false
189194
library:
@@ -198,7 +203,12 @@ jobs:
198203
bindgen: false
199204
library:
200205
name: libressl
201-
version: 3.8.2
206+
version: 3.8.3
207+
- target: x86_64-unknown-linux-gnu
208+
bindgen: false
209+
library:
210+
name: libressl
211+
version: 3.9.0
202212
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
203213
runs-on: ubuntu-latest
204214
env:

openssl-sys/build/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ See rust-openssl documentation for more information:
302302
(3, 8, 0) => ('3', '8', '0'),
303303
(3, 8, 1) => ('3', '8', '1'),
304304
(3, 8, _) => ('3', '8', 'x'),
305+
(3, 9, 0) => ('3', '9', '0'),
305306
_ => version_error(),
306307
};
307308

@@ -344,7 +345,7 @@ fn version_error() -> ! {
344345
"
345346
346347
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
347-
through 3.8.1, but a different version of OpenSSL was found. The build is now aborting
348+
through 3.9.0, but a different version of OpenSSL was found. The build is now aborting
348349
due to this version mismatch.
349350
350351
"

0 commit comments

Comments
 (0)