Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
9053425
Add a mailmap entry for gnzlbg
tgross35 Jul 10, 2025
12b5794
Remove TmpLayout in layout_of_enum
zachs18 Aug 12, 2025
db4e716
std library: use execinfo library also on NetBSD.
he32 Aug 23, 2025
17c8667
fix(std): Add __my_thread_exit stub for QNX 8
rafaeling Jul 23, 2025
f9c765e
Test `instrument-mcount`
clubby789 Aug 26, 2025
7506000
Add an overlooked `tracing` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
12dc789
Add `libc` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
daf6fe2
Add `serde_json` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
d263d3a
Add `either` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
1ed5660
Add `proc-macro2` and `quote` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
ce02d34
Add `rustc_apfloat` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
77d2f0c
Add `tempfile` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
77b047a
Add `indexmap` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
2b26476
Add `rustc-hash` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
e692c97
Add `derive-where` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
8fc0813
Add `measureme` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
42359b7
Add `scoped-tls` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
20d0375
Add `odht` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
b16c66e
Add `polonius-engine` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
475c29d
Add `rustc-demangle` to `[workspace.dependencies]`.
nnethercote Aug 27, 2025
df802cc
fix `core::marker::Destruct` doc
neeko-cat Aug 28, 2025
1a33d62
implement Sum and Product for Saturating(u*)
Qelxiros Aug 28, 2025
2bd53b7
Rollup merge of #143713 - tgross35:mailmap, r=Mark-Simulacrum
Zalathar Aug 29, 2025
ef50370
Rollup merge of #144275 - Qelxiros:saturating-arithmetic, r=tgross35
Zalathar Aug 29, 2025
6ac6eb6
Rollup merge of #144354 - rafaeling:fix-142726-qnx8-link-fail, r=tgro…
Zalathar Aug 29, 2025
dd03ce8
Rollup merge of #145387 - zachs18:remove-tmplayout, r=cjgillot
Zalathar Aug 29, 2025
4b0933a
Rollup merge of #145793 - he32:netbsd-libexecinfo-fix, r=Mark-Simulacrum
Zalathar Aug 29, 2025
4ccf8ca
Rollup merge of #145884 - clubby789:test-mcount, r=Mark-Simulacrum
Zalathar Aug 29, 2025
2246dda
Rollup merge of #145947 - nnethercote:workspace-members-2, r=Kobzol
Zalathar Aug 29, 2025
5c0cd83
Rollup merge of #145972 - neeko-cat:patch-2, r=ibraheemdev
Zalathar Aug 29, 2025
a54567e
tests: Ignore basic-stepping.rs on riscv64
Aug 29, 2025
31eafaf
Rollup merge of #145977 - CaiWeiran:basic-stepping-test, r=jieyouxu
Zalathar Aug 29, 2025
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
Prev Previous commit
Next Next commit
Add indexmap to [workspace.dependencies].
  • Loading branch information
nnethercote committed Aug 28, 2025
commit 77b047aaab6de9ec20b3c4f2fa57743c16d8789c
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ exclude = [
# tidy-alphabetical-start
bitflags = "2.9.3"
either = "1.15.0"
indexmap = "2.10.0"
itertools = "0.12.1"
# FIXME: Remove this pin once this rustix issue is resolved
# https://github.com/bytecodealliance/rustix/issues/1496
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_data_structures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bitflags.workspace = true
either.workspace = true
elsa = "1.11.0"
ena = "0.14.3"
indexmap = "2.4.0"
indexmap.workspace = true
jobserver_crate = { version = "0.1.28", package = "jobserver" }
measureme = "12.0.1"
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_resolve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2024"
[dependencies]
# tidy-alphabetical-start
bitflags.workspace = true
indexmap = "2.4.0"
indexmap.workspace = true
itertools.workspace = true
pulldown-cmark = { version = "0.11", features = ["html"], default-features = false }
rustc_arena = { path = "../rustc_arena" }
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_serialize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2024"

[dependencies]
# tidy-alphabetical-start
indexmap = "2.0.0"
indexmap.workspace = true
rustc_hashes = { path = "../rustc_hashes" }
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
thin-vec.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_span/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2024"
# tidy-alphabetical-start
blake3 = "1.5.2"
derive-where = "1.2.7"
indexmap = { version = "2.0.0" }
indexmap.workspace = true
itoa = "1.0"
md5 = { package = "md-5", version = "0.10.0" }
rustc_arena = { path = "../rustc_arena" }
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_type_ir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2024"
bitflags.workspace = true
derive-where = "1.2.7"
ena = "0.14.3"
indexmap = "2.0.0"
indexmap.workspace = true
rustc-hash = "2.0.0"
rustc_ast_ir = { path = "../rustc_ast_ir", default-features = false }
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "lib.rs"
arrayvec = { version = "0.7", default-features = false }
askama = { version = "0.14", default-features = false, features = ["alloc", "config", "derive"] }
base64 = "0.21.7"
indexmap = "2"
indexmap.workspace = true
itertools.workspace = true
minifier = { version = "0.3.5", default-features = false }
pulldown-cmark-escape = { version = "0.11.0", features = ["simd"] }
Expand Down
2 changes: 1 addition & 1 deletion src/tools/compiletest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ diff = "0.1.10"
getopts = "0.2"
glob = "0.3.0"
home = "0.5.5"
indexmap = "2.0.0"
indexmap.workspace = true
miropt-test-tools = { path = "../miropt-test-tools" }
rayon = "1.10.0"
regex = "1.0"
Expand Down