diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 3f5933b4f97..6e68cc32a53 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,6 +8,9 @@ ignorePaths: [ '**/tests/**', ], + // Ignore curl-sys, for now + // https://github.com/rust-lang/cargo/issues/16357 + ignoreDeps: ['curl-sys'], customManagers: [ { customType: 'regex', diff --git a/Cargo.lock b/Cargo.lock index edf8866683e..f5216bfda5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -871,9 +871,9 @@ dependencies = [ [[package]] name = "curl-sys" -version = "0.4.84+curl-8.17.0" +version = "0.4.83+curl-8.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abc4294dc41b882eaff37973c2ec3ae203d0091341ee68fbadd1d06e0c18a73b" +checksum = "5830daf304027db10c82632a464879d46a3f7c4ba17a31592657ad16c719b483" dependencies = [ "cc", "libc", diff --git a/Cargo.toml b/Cargo.toml index ec094828812..55e634e7530 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,9 @@ core-foundation = { version = "0.10.1", features = ["mac_os_10_7_support"] } crates-io = { version = "0.40.16", path = "crates/crates-io" } criterion = { version = "0.7.0", features = ["html_reports"] } curl = "0.4.49" -curl-sys = "0.4.84" +# Do not upgrade curl-sys past 0.4.83 +# https://github.com/rust-lang/cargo/issues/16357 +curl-sys = "0.4.83" filetime = "0.2.26" flate2 = { version = "1.1.5", default-features = false, features = ["zlib-rs"] } git2 = "0.20.2"