Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
598865d
fix(self-update): rename triple to tuple in self_update
motorailgun Apr 26, 2026
b88c385
refactor(dist): rename TargetTriple to TargetTuple
motorailgun Apr 26, 2026
03dbc9d
refactor: remove PartialToochainDesc::has_triple() in favor to
motorailgun Apr 28, 2026
4c6b61e
refactor(dist): rename triple module to target_tuple
motorailgun Apr 27, 2026
8ea823a
refactor(dist): rename PartialTargetTriple to PartialTargetTuple
motorailgun Apr 26, 2026
ac38574
fix(dist): bulk rename triple to tuple for variables and messages
motorailgun Apr 26, 2026
aab28ff
docs: fix plural of VM in coding standards
Rohan5commit May 1, 2026
f8247a3
docs: fix the FileBuffer::clear doc comment wording
Rohan5commit Apr 28, 2026
62b3f74
test(download): support more feature flag combinations
rami3l Mar 20, 2026
42c4ae9
refactor: rename get_default_host_triple to default_host_tuple
motorailgun May 1, 2026
b36f64f
refactor: bulk rename triple to ruple
motorailgun May 1, 2026
e81f2be
refactor(tests): rename triple to tuple
motorailgun May 1, 2026
3bf41e5
chore(deps): lock file maintenance
renovate[bot] May 4, 2026
99ad743
Provide --yes alias for -y flag consistently
senekor May 6, 2026
5432f16
feat(config): add `Cfg` field to force-disable auto-installation
rami3l Apr 28, 2026
8b8eb52
refactor(cli/rustup-mode): refine usage of `stdout` term and locks in…
rami3l May 6, 2026
d0b9e9f
refactor(cli/rustup-mode): reduce rightward drift in `show()`
rami3l May 6, 2026
3e06a23
refactor(cli/rustup-mode): postpone eval of `active_toolchain` in `sh…
rami3l May 6, 2026
e12903a
refactor(cli/rustup-mode): postpone eval of `active_toolchain_targets…
rami3l May 5, 2026
9dbc7eb
fix(cli/rustup-mode)!: complete `rustup show` if active toolchain is …
rami3l May 5, 2026
0330fa3
chore: rename partially "Triple" to "Tuple" to reflect the new termin…
WaterWhisperer May 7, 2026
a5192ba
chore: rename internal tuple constants
WaterWhisperer May 7, 2026
08f955b
chore: document legacy default host setting
WaterWhisperer May 7, 2026
02f1702
test(download): also scrub `HTTP_PROXY` in `scrub_env()`
rami3l May 7, 2026
9c4bf47
chore(settings): add test to parse default_host_triple in toml
motorailgun May 8, 2026
d659d61
chore(settings): rename default_host_triple to default_host_tuple and
motorailgun May 8, 2026
d3ab302
feat(cli/self-update): refine wording of "already installed Rust" war…
rami3l May 8, 2026
26eb4b4
chore(deps): lock file maintenance
renovate[bot] May 11, 2026
162746a
Align shell setup comments in install message
MarcosBorgesPhD May 14, 2026
2240a97
fix(dist): propagate v2 manifest checksum failure instead of reportin…
cachebag Apr 24, 2026
c902393
test(dist): fail v2 manifest update when manifest disagrees with .sha256
cachebag Apr 24, 2026
8438baa
chore(deps): lock file maintenance
renovate[bot] May 18, 2026
796d483
test: make tests agnostic to external `RUSTUP_AUTO_INSTALL` and `RUST…
rami3l Aug 31, 2025
28c1d26
refactor(config): extract `EnsureInstalled<>` wrapper type
rami3l May 8, 2026
b9fa833
refactor(config): return `EnsureInstalled<>` from more functions
rami3l May 8, 2026
6287441
feat(config): warn user if auto-install is enabled
rami3l May 16, 2026
84dc4f3
fix(deps): update opentelemetry
renovate[bot] May 22, 2026
6964eeb
chore(deps): lock file maintenance
renovate[bot] May 25, 2026
a2c599c
docs(dev-guide/coding-standards): adapt style guide from rustls
rami3l May 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
444 changes: 128 additions & 316 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ openssl = { version = "0.10", optional = true }
# HACK: Temporarily pinned due to ppc64 ELFv1/v2 ABI issue in 300.5.5, to be
# removed when <https://github.com/openssl/openssl/issues/29815> lands.
openssl-src = { version = "=300.5.4", optional = true }
opentelemetry = { version = "0.31", optional = true }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic"], optional = true }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"], optional = true }
opentelemetry = { version = "0.32", optional = true }
opentelemetry-otlp = { version = "0.32", features = ["grpc-tonic"], optional = true }
opentelemetry_sdk = { version = "0.32", features = ["rt-tokio"], optional = true }
platforms = "3.4"
pulldown-cmark = { version = "0.13", default-features = false }
rand = "0.10"
Expand Down Expand Up @@ -101,7 +101,7 @@ tokio-stream = "0.1.14"
toml = "1.0"
tracing = "0.1"
tracing-log = "0.2"
tracing-opentelemetry = { version = "0.32", optional = true }
tracing-opentelemetry = { version = "0.33", optional = true }
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = "2.4"
wait-timeout = "0.2"
Expand Down
Loading
Loading