Skip to content

Commit

Permalink
dist: bump rustup version to 1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Jan 29, 2024
1 parent 33ad3a4 commit 86ec5e5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
13 changes: 10 additions & 3 deletions download/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "download"
version = "1.26.0"
version = "1.27.0"
edition = "2021"
license = "MIT OR Apache-2.0"

Expand All @@ -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"] }

0 comments on commit 86ec5e5

Please sign in to comment.