Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve transient dependencies #1361

Merged
merged 2 commits into from
Jan 8, 2025
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
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,15 @@ jobs:
env:
RUST_BACKTRACE: 1
run: |
cargo test --features=${{ matrix.features }} --features slow_tests -- --nocapture
cargo test --features slow_tests,websockets -- --nocapture
- name: TLS tests (ring, aws-lc-rs, fips)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
# we do not want to create more matrices just for tls test.
# It's easier to test it manually here.
cargo test tls --features=ring --no-default-features -- --nocapture
cargo test tls --features=aws-lc-rs --no-default-features -- --nocapture
cargo test tls --features=fips --no-default-features -- --nocapture

check_format:
name: check format (ubuntu-latest / nightly)
Expand Down
10 changes: 5 additions & 5 deletions async-nats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ base64 = "0.22"
tryhard = "0.5"
ring = { version = "0.17", optional = true }
rand = "0.8"
webpki = { package = "rustls-webpki", version = "0.102" }
rustls-webpki = { package = "rustls-webpki", default-features = false, version = "0.102" }
portable-atomic = "1"
tokio-websockets = { version = "0.10", features = ["client", "rand", "rustls-native-roots"], optional = true }
tokio-websockets = { version = "0.10", default-features = false, features = ["client", "rand", "rustls-webpki-roots"], optional = true }
pin-project = "1.0"

[dev-dependencies]
Expand All @@ -52,7 +52,7 @@ rand = "0.8"
tokio = { version = "1.25.0", features = ["rt-multi-thread"] }
futures = { version = "0.3.28", default-features = false, features = ["std", "async-await"] }
tracing-subscriber = "0.3"
async-nats = {path = ".", features = ["experimental"]}
async-nats = {path = ".", features = ["service", "server_2_10"], default-features = false}
reqwest = "0.11.18"
jsonschema = "0.17.1"

Expand All @@ -64,8 +64,8 @@ default = ["server_2_10", "ring"]
# Enables Service API for the client.
service = []
websockets = ["dep:tokio-websockets"]
aws-lc-rs = ["dep:aws-lc-rs", "tokio-rustls/aws-lc-rs", "tokio-websockets/aws-lc-rs"]
ring = ["dep:ring", "tokio-rustls/ring", "tokio-websockets/ring"]
aws-lc-rs = ["dep:aws-lc-rs", "tokio-rustls/aws-lc-rs", "tokio-websockets?/aws-lc-rs", "rustls-webpki/aws_lc_rs"]
ring = ["dep:ring", "tokio-rustls/ring", "tokio-websockets?/ring"]
fips = ["aws-lc-rs", "tokio-rustls/fips"]
# All experimental features are part of this feature flag.
experimental = ["service"]
Expand Down
4 changes: 2 additions & 2 deletions async-nats/src/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ impl Connector {
}
#[cfg(feature = "websockets")]
"wss" => {
let domain = webpki::types::ServerName::try_from(server_addr.host())
let domain = rustls_webpki::types::ServerName::try_from(server_addr.host())
.map_err(|err| ConnectError::with_source(crate::ConnectErrorKind::Tls, err))?;
let tls_config =
Arc::new(tls::config_tls(&self.options).await.map_err(|err| {
Expand Down Expand Up @@ -406,7 +406,7 @@ impl Connector {
);
let tls_connector = tokio_rustls::TlsConnector::from(tls_config);

let domain = webpki::types::ServerName::try_from(server_addr.host())
let domain = rustls_webpki::types::ServerName::try_from(server_addr.host())
.map_err(|err| ConnectError::with_source(crate::ConnectErrorKind::Tls, err))?;

let tls_stream = tls_connector
Expand Down
8 changes: 5 additions & 3 deletions async-nats/src/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@

use crate::connector::ConnectorOptions;
use crate::tls;
use rustls_webpki::types::{CertificateDer, PrivateKeyDer};
use std::io::{self, BufReader, ErrorKind};
use std::path::PathBuf;
use tokio_rustls::rustls::{ClientConfig, RootCertStore};
use webpki::types::{CertificateDer, PrivateKeyDer};

/// Loads client certificates from a `.pem` file.
/// If the pem file is found, but does not contain any certificates, it will return
Expand Down Expand Up @@ -67,8 +67,10 @@ pub(crate) async fn config_tls(options: &ConnectorOptions) -> io::Result<ClientC
let trust_anchors = load_certs(cafile.to_owned())
.await?
.into_iter()
.map(|cert| webpki::anchor_from_trusted_cert(&cert).map(|ta| ta.to_owned()))
.collect::<Result<Vec<_>, webpki::Error>>()
.map(|cert| {
rustls_webpki::anchor_from_trusted_cert(&cert).map(|ta| ta.to_owned())
})
.collect::<Result<Vec<_>, rustls_webpki::Error>>()
.map_err(|err| {
io::Error::new(
ErrorKind::InvalidInput,
Expand Down
2 changes: 1 addition & 1 deletion async-nats/tests/kv_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ mod kv {
}
})
.retries(5)
.exponential_backoff(Duration::from_millis(500))
.exponential_backoff(Duration::from_millis(2000))
.await
.unwrap();

Expand Down
Loading