From 86ec5e5d2371fdd736d6efb22e7d5dc24fa211be Mon Sep 17 00:00:00 2001 From: rami3l Date: Mon, 29 Jan 2024 19:31:24 +0800 Subject: [PATCH] dist: bump `rustup` version to `1.27.0` --- Cargo.lock | 4 ++-- Cargo.toml | 10 +++++++--- download/Cargo.toml | 13 ++++++++++--- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f4ef959e48b..72c5e9fce44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "download" -version = "1.26.0" +version = "1.27.0" dependencies = [ "anyhow", "curl", @@ -1862,7 +1862,7 @@ dependencies = [ [[package]] name = "rustup" -version = "1.26.0" +version = "1.27.0" dependencies = [ "anyhow", "cc", diff --git a/Cargo.toml b/Cargo.toml index c3097e174b8..54a7e4be38d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustup" -version = "1.26.0" +version = "1.27.0" edition = "2021" description = "Manage multiple rust installations with ease" homepage = "https://github.com/rust-lang/rustup" @@ -88,7 +88,9 @@ threadpool = "1" tokio = { workspace = true, optional = true } toml = "0.8" tracing-opentelemetry = { workspace = true, optional = true } -tracing-subscriber = { workspace = true, optional = true, features = ["env-filter"] } +tracing-subscriber = { workspace = true, optional = true, features = [ + "env-filter", +] } tracing.workspace = true url.workspace = true wait-timeout = "0.2" @@ -168,7 +170,9 @@ rustup-macros = { path = "rustup-macros" } tempfile = "3.8" termcolor = "1.2" thiserror = "1.0" -tokio = { version = "1.26.0", default-features = false, features = ["rt-multi-thread"] } +tokio = { version = "1.26.0", default-features = false, features = [ + "rt-multi-thread", +] } tracing = "0.1" tracing-opentelemetry = "0.22.0" tracing-subscriber = "0.3.16" diff --git a/download/Cargo.toml b/download/Cargo.toml index 45d5d0dbce0..d446bfcf2fe 100644 --- a/download/Cargo.toml +++ b/download/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "download" -version = "1.26.0" +version = "1.27.0" edition = "2021" license = "MIT OR Apache-2.0" @@ -18,13 +18,20 @@ anyhow.workspace = true curl = { version = "0.4.44", optional = true } env_proxy = { version = "0.4.1", optional = true } once_cell.workspace = true -reqwest = { version = "0.11", default-features = false, features = ["blocking", "gzip", "socks"], optional = true } +reqwest = { version = "0.11", default-features = false, features = [ + "blocking", + "gzip", + "socks", +], optional = true } thiserror.workspace = true url.workspace = true [dev-dependencies] http-body-util = "0.1.0" -hyper = { version = "1.0", default-features = false, features = ["server", "http1"] } +hyper = { version = "1.0", default-features = false, features = [ + "server", + "http1", +] } hyper-util = { version = "0.1.1", features = ["tokio"] } tempfile.workspace = true tokio = { workspace = true, default-features = false, features = ["sync"] }