From d95d0c4f682be496477540a04ca826538e61b114 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 10:56:27 +0000 Subject: [PATCH 1/2] Update cc requirement from =1.0.105 to =1.2.1 Updates the requirements on [cc](https://github.com/rust-lang/cc-rs) to permit the latest version. - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.0.105...cc-v1.2.1) --- updated-dependencies: - dependency-name: cc dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aws-lc-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-lc-rs/Cargo.toml b/aws-lc-rs/Cargo.toml index cb2477a2f54..09e1b77a30a 100644 --- a/aws-lc-rs/Cargo.toml +++ b/aws-lc-rs/Cargo.toml @@ -71,7 +71,7 @@ regex-syntax = "~0.7.5" # Pinned to avoid build failure in older versions proc-macro2 = "1.0.60" # Pinned dependency to preserve MSRV: 1.63.0 <= rust-version < 1.67.0 -cc = "=1.0.105" +cc = "=1.2.1" [package.metadata.cargo-udeps.ignore] development = ["which", "home", "regex", "regex-automata", "regex-syntax", "proc-macro2", "jobserver", "cc"] From 0d3e220635835287481f593e07ba34d0a88eaa7b Mon Sep 17 00:00:00 2001 From: Justin Smith Date: Thu, 14 Nov 2024 08:14:52 -0500 Subject: [PATCH 2/2] No need to pin - cc MSRV @ v1.63 --- aws-lc-rs/Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/aws-lc-rs/Cargo.toml b/aws-lc-rs/Cargo.toml index 09e1b77a30a..44ea0f31838 100644 --- a/aws-lc-rs/Cargo.toml +++ b/aws-lc-rs/Cargo.toml @@ -70,8 +70,6 @@ regex-automata = "~0.3.9" regex-syntax = "~0.7.5" # Pinned to avoid build failure in older versions proc-macro2 = "1.0.60" -# Pinned dependency to preserve MSRV: 1.63.0 <= rust-version < 1.67.0 -cc = "=1.2.1" [package.metadata.cargo-udeps.ignore] development = ["which", "home", "regex", "regex-automata", "regex-syntax", "proc-macro2", "jobserver", "cc"]