Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
829338a
add enum variant field names to make the code clearer
pietroalbini Apr 1, 2024
2c26072
remove redundant flat vs nested distinction to simplify enum
pietroalbini Apr 1, 2024
2ec337c
turn all_nested_unused into used_childs
pietroalbini Apr 1, 2024
13f7623
store the span of the nested part of the use tree in the ast
pietroalbini Apr 1, 2024
2d3a9a5
remove braces when fixing a nested use tree into a single use
pietroalbini Apr 14, 2024
397a35d
crashes: add lastest batch of crash tests
matthiaskrgr May 5, 2024
1d9d671
Make sure we don't deny macro vars w keyword names
compiler-errors May 7, 2024
b68b920
Simplify `use crate::rustc_foo::bar` occurrences.
nnethercote May 8, 2024
fbc2abd
Update cc crate to v1.0.97
jfgoog May 8, 2024
c7003f5
Ignore empty RUSTC_WRAPPER in bootstrap
Skepfyr May 8, 2024
767711b
Use generic `NonZero` in examples.
reitermarkus Apr 23, 2024
3fe0be9
Simplify `clippy` lint.
reitermarkus Apr 23, 2024
7531eaf
Simplify suggestion.
reitermarkus Apr 23, 2024
bd8e565
Use generic `NonZero`.
reitermarkus Apr 21, 2024
cacc082
Handle normalization failure in `struct_tail_erasing_lifetimes`
gurry May 8, 2024
d30af5e
Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=Nilstrieb
matthiaskrgr May 8, 2024
d8a3a69
Rollup merge of #124587 - reitermarkus:use-generic-nonzero, r=dtolnay
matthiaskrgr May 8, 2024
812fb24
Rollup merge of #124775 - matthiaskrgr:boom, r=jieyouxu
matthiaskrgr May 8, 2024
952f12e
Rollup merge of #124869 - compiler-errors:keyword, r=Nilstrieb
matthiaskrgr May 8, 2024
3e22ea9
Rollup merge of #124876 - nnethercote:rm-use-crate-rustc_foo, r=compi…
matthiaskrgr May 8, 2024
294ac1b
Rollup merge of #124892 - jfgoog:update-cc, r=workingjubilee
matthiaskrgr May 8, 2024
18639db
Rollup merge of #124903 - Skepfyr:rustc-wrapper, r=clubby789
matthiaskrgr May 8, 2024
782ef18
Rollup merge of #124909 - compiler-errors:struct-tail-leftovers, r=co…
matthiaskrgr May 8, 2024
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
Update cc crate to v1.0.97
  • Loading branch information
jfgoog committed May 8, 2024
commit fbc2abd6be069a549b8009fafec65aa6078f89f4
6 changes: 3 additions & 3 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -479,9 +479,9 @@ version = "0.1.0"

[[package]]
name = "cc"
version = "1.0.92"
version = "1.0.97"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41"
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"

[[package]]
name = "cfg-if"
Expand Down Expand Up @@ -2219,7 +2219,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.4",
]

[[package]]
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_codegen_ssa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
# tidy-alphabetical-start
ar_archive_writer = "0.2.0"
bitflags = "2.4.1"
cc = "1.0.90"
cc = "1.0.97"
itertools = "0.12"
jobserver = "0.1.28"
pathdiff = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion compiler/rustc_llvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ libc = "0.2.73"

[build-dependencies]
# tidy-alphabetical-start
cc = "1.0.90"
cc = "1.0.97"
# tidy-alphabetical-end
2 changes: 1 addition & 1 deletion library/profiler_builtins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ core = { path = "../core" }
compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] }

[build-dependencies]
cc = "1.0.90"
cc = "1.0.97"