[beta-1.93] Downgrade curl-sys to 0.4.83 (#16399)

Beta backports
- rust-lang/cargo@389962f710

In order to make CI pass, the following PRs are also cherry-picked:

- 

See also

* [#t-cargo > [beta-1.93] nominate backport curl
downgrade](https://rust-lang.zulipchat.com/#narrow/channel/246057-t-cargo/topic/.5Bbeta-1.2E93.5D.20nominate.20backport.20curl.20downgrade/with/563873939)
*
https://github.com/rust-lang/cargo/issues/16357#issuecomment-3646675377
This commit is contained in:
Ed Page
2025-12-15 11:39:17 -06:00
committed by GitHub
3 changed files with 8 additions and 3 deletions

View File

@@ -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',

4
Cargo.lock generated
View File

@@ -870,9 +870,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",

View File

@@ -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"