Skip to content

Rollup of 9 pull requests #120249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4e973b0
rc,sync: Do not create references to uninitialized values
taiki-e Jan 7, 2024
b152de2
coverage: Discard code regions that might cause fatal errors in `llvm…
Zalathar Jan 5, 2024
bdfc64a
coverage: Add a test that uses `#[bench]`
Zalathar Jan 21, 2024
6d7e80c
Add `#[coverage(off)]` to closures introduced by `#[test]`/`#[bench]`
Zalathar Jan 21, 2024
df3ec4c
aho-corasick 0.7.20 -> aho-corasick 1.0.2
michaelciraci Jan 20, 2024
0e3035b
Manually implement derived `NonZero` traits.
reitermarkus Jan 20, 2024
56bc552
Bump `object` version
clubby789 Jan 21, 2024
b50b333
Bump `uniq-langid` version
clubby789 Jan 21, 2024
41dcba8
coverage: Don't instrument `#[automatically_derived]` functions
Zalathar Jan 21, 2024
f58af9b
Add a simpler and more targetted code path for impl trait in assoc items
oli-obk Jan 9, 2024
ac332bd
Pull opaque type check into a separate method
oli-obk Jan 9, 2024
f75361f
Limit impl trait in assoc type defining scope
oli-obk Jan 9, 2024
4e07699
Add some tests
oli-obk Jan 9, 2024
1829aa6
Use an enum instead of a bool
oli-obk Jan 16, 2024
5e5d135
Check that we forbid nested items, but not nested closures
oli-obk Jan 16, 2024
21e5bea
Use debug_assert instead of expanded equivalent
wesleywiser Jan 22, 2024
ce11b70
Re-add estebank to review rotation
estebank Jan 22, 2024
c6796b0
Rollup merge of #119433 - taiki-e:rc-uninit-ref, r=Nilstrieb
matthiaskrgr Jan 22, 2024
c5f2c10
Rollup merge of #119460 - Zalathar:improper-region, r=wesleywiser
matthiaskrgr Jan 22, 2024
4512fa4
Rollup merge of #119766 - oli-obk:split_tait_and_atpit, r=compiler-er…
matthiaskrgr Jan 22, 2024
c2db514
Rollup merge of #120160 - reitermarkus:nonzero-traits, r=dtolnay
matthiaskrgr Jan 22, 2024
be7dc79
Rollup merge of #120177 - michaelciraci:merge-deps-2, r=Nilstrieb
matthiaskrgr Jan 22, 2024
f9fe759
Rollup merge of #120183 - Zalathar:test-closure, r=compiler-errors
matthiaskrgr Jan 22, 2024
5d2eae8
Rollup merge of #120185 - Zalathar:auto-derived, r=wesleywiser
matthiaskrgr Jan 22, 2024
c4ac1b2
Rollup merge of #120201 - clubby789:dep-update, r=dtolnay
matthiaskrgr Jan 22, 2024
f341954
Rollup merge of #120246 - estebank:revert_breathing_room, r=estebank
matthiaskrgr Jan 22, 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
aho-corasick 0.7.20 -> aho-corasick 1.0.2
Removing opener 0.5.2, and updating cargo_metadata 0.15.4 -> cargo_metadata 0.18.0

Reverting rustfmt change

Reverting rustfmt patch

Reverting dependency change for clippy
  • Loading branch information
michaelciraci committed Jan 21, 2024
commit df3ec4cf83c525b5615d2e75f1f3c84cde35ddc2
25 changes: 15 additions & 10 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -310,13 +310,12 @@ dependencies = [

[[package]]
name = "bstr"
version = "1.5.0"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5"
checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
dependencies = [
"memchr",
"once_cell",
"regex-automata 0.1.10",
"regex-automata 0.4.3",
"serde",
]

Expand Down Expand Up @@ -1589,11 +1588,11 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"

[[package]]
name = "globset"
version = "0.4.10"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
dependencies = [
"aho-corasick 0.7.20",
"aho-corasick 1.0.2",
"bstr",
"fnv",
"log",
Expand Down Expand Up @@ -2370,9 +2369,9 @@ dependencies = [

[[package]]
name = "memchr"
version = "2.5.0"
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
dependencies = [
"compiler_builtins",
"rustc-std-workspace-core",
Expand Down Expand Up @@ -3183,6 +3182,12 @@ dependencies = [
"memchr",
]

[[package]]
name = "regex-automata"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"

[[package]]
name = "regex-syntax"
version = "0.6.29"
Expand Down Expand Up @@ -5424,7 +5429,7 @@ name = "tidy"
version = "0.1.0"
dependencies = [
"cargo-platform",
"cargo_metadata 0.15.4",
"cargo_metadata 0.18.0",
"ignore",
"lazy_static",
"miropt-test-tools",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
autobins = false

[dependencies]
cargo_metadata = "0.15"
cargo_metadata = "0.18"
cargo-platform = "0.1.2"
regex = "1"
miropt-test-tools = { path = "../miropt-test-tools" }
Expand Down