diff --git a/rpxy-certs/src/server_crypto.rs b/rpxy-certs/src/server_crypto.rs index c6061d2..60ffcba 100644 --- a/rpxy-certs/src/server_crypto.rs +++ b/rpxy-certs/src/server_crypto.rs @@ -39,7 +39,7 @@ impl TryInto> for &ServerCryptoBase { type Error = RpxyCertError; fn try_into(self) -> Result, Self::Error> { - let aggregated = self.build_aggrated_server_crypto()?; + let aggregated = self.build_aggregated_server_crypto()?; let individual = self.build_individual_server_crypto_map()?; Ok(Arc::new(ServerCrypto { aggregated_config_no_client_auth: Arc::new(aggregated), @@ -117,7 +117,7 @@ impl ServerCryptoBase { /* ------------------------------------------------ */ /// Build aggregated server crypto inner object for no client auth server especially for http3 - fn build_aggrated_server_crypto(&self) -> Result { + fn build_aggregated_server_crypto(&self) -> Result { let mut resolver_global = ResolvesServerCertUsingSni::new(); // AWS LC provider by default diff --git a/rpxy-lib/Cargo.toml b/rpxy-lib/Cargo.toml index a495007..075f9f6 100644 --- a/rpxy-lib/Cargo.toml +++ b/rpxy-lib/Cargo.toml @@ -83,7 +83,7 @@ tokio-rustls = { version = "0.26.0", features = ["early-data"] } tracing = { version = "0.1.40" } # http/3 -quinn = { version = "0.11.1", optional = true } +quinn = { version = "0.11.2", optional = true } h3 = { version = "0.0.5", optional = true } h3-quinn = { version = "0.0.6", optional = true } s2n-quic-h3 = { path = "../submodules/s2n-quic-h3/", optional = true }