Commit e98edc19 authored by Charlie Li's avatar Charlie Li
Browse files

Support the rest of LibreSSL 3.3.x

First stable release for the 3.3.x branch
- "Other than the version number, it is identical to LibreSSL 3.3.2."
parent ffec25a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -167,7 +167,7 @@ jobs:
            - target: x86_64-unknown-linux-gnu
              library:
                name: libressl
                version: 3.3.2
                version: 3.3.3
      name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}
      runs-on: ubuntu-latest
      env:
+2 −2
Original line number Diff line number Diff line
@@ -232,7 +232,7 @@ See rust-openssl README for more information:
            (3, 2, _) => ('3', '2', 'x'),
            (3, 3, 0) => ('3', '3', '0'),
            (3, 3, 1) => ('3', '3', '1'),
            (3, 3, 2) => ('3', '3', '2'),
            (3, 3, _) => ('3', '3', 'x'),
            _ => version_error(),
        };

@@ -273,7 +273,7 @@ fn version_error() -> ! {
        "

This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
through 3.3.2, but a different version of OpenSSL was found. The build is now aborting
through 3.3.x, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.

"
+1 −1
Original line number Diff line number Diff line
//! Bindings to OpenSSL
//!
//! This crate provides a safe interface to the popular OpenSSL cryptography library. OpenSSL versions 1.0.1 through
//! 1.1.1 and LibreSSL versions 2.5 through 3.3.2 are supported.
//! 1.1.1 and LibreSSL versions 2.5 through 3.3.x are supported.
//!
//! # Building
//!