From caab8008c0d6e4151441f7467d00e4e37f9ff589 Mon Sep 17 00:00:00 2001 From: Justin W Smith <103147162+justsmth@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:01:08 -0500 Subject: [PATCH] Prepare release v1.12.3 (#700) * Prepare release v1.12.3 * Clippy fix --- aws-lc-rs/Cargo.toml | 4 ++-- aws-lc-rs/src/rsa/key.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/aws-lc-rs/Cargo.toml b/aws-lc-rs/Cargo.toml index 74208e04384..3a73fb760d0 100644 --- a/aws-lc-rs/Cargo.toml +++ b/aws-lc-rs/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "aws-lc-rs" authors = ["AWS-LibCrypto"] -version = "1.12.2" +version = "1.12.3" # this crate re-exports whatever sys crate that was selected -links = "aws_lc_rs_1_12_2_sys" +links = "aws_lc_rs_1_12_3_sys" edition = "2021" rust-version = "1.63.0" keywords = ["crypto", "cryptography", "security"] diff --git a/aws-lc-rs/src/rsa/key.rs b/aws-lc-rs/src/rsa/key.rs index fdea6a322f6..1abc483f88e 100644 --- a/aws-lc-rs/src/rsa/key.rs +++ b/aws-lc-rs/src/rsa/key.rs @@ -340,6 +340,7 @@ impl PublicKey { } /// Returns the length in bytes of the public modulus. + #[must_use] pub fn modulus_len(&self) -> usize { self.modulus.len() }