Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions parsec-openssl-provider-shared/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 2023 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
#![deny(warnings)]

use parsec_openssl_provider::{openssl_errors, parsec_provider_provider_init};

Expand Down
1 change: 1 addition & 0 deletions parsec-openssl-provider/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright 2023 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::missing_safety_doc)]
#![deny(warnings)]

use std::sync::Arc;

Expand Down
2 changes: 1 addition & 1 deletion parsec-openssl-provider/src/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const PARSEC_PROVIDER_PARAM_TYPES: [OSSL_PARAM; 5] = [
];

pub struct ParsecProviderContext {
pub client: BasicClient,
client: BasicClient,
}

impl ParsecProviderContext {
Expand Down
1 change: 1 addition & 0 deletions parsec-openssl-sys2/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright 2023 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
#![deny(warnings)]

#[allow(non_camel_case_types)]
#[allow(non_upper_case_globals)]
Expand Down
1 change: 1 addition & 0 deletions parsec-openssl2/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright 2023 Contributors to the Parsec project.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::missing_safety_doc)]
#![deny(warnings)]

pub use openssl_sys::OSSL_PROVIDER;
pub use parsec_openssl_sys2::openssl_bindings;
Expand Down
4 changes: 2 additions & 2 deletions tests/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ if [[ ! -z ${RUST_TOOLCHAIN_VERSION:+x} ]]; then
rustup override set ${RUST_TOOLCHAIN_VERSION}
fi

rustup update

BUILD="False"
TEST="False"
STATIC_CHECKS="False"
Expand Down Expand Up @@ -70,6 +68,8 @@ while [ "$#" -gt 0 ]; do
shift
done

rustup update

if [ "$BUILD" == "True" ]; then
echo "OpenSSL version being used:"
openssl version
Expand Down