Skip to content

Miri subtree update #139573

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

Merged
merged 31 commits into from
Apr 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
65bf8a8
machine clock: make 'monotonic' explicit
RalfJung Mar 28, 2025
99ce8fc
Merge pull request #4242 from RalfJung/clock-names
RalfJung Mar 28, 2025
76034a6
do not run EnvVars::cleanup if there was an interpreter error
RalfJung Mar 31, 2025
4858c3f
Merge pull request #4243 from RalfJung/env-cleanup-too-much
RalfJung Mar 31, 2025
a3af09f
Preparing for merge from rustc
RalfJung Apr 2, 2025
e435ba3
Merge from rustc
RalfJung Apr 2, 2025
5103bde
Merge pull request #4245 from RalfJung/rustup
RalfJung Apr 2, 2025
28d1844
visit_freeze_sensitive: add comment
RalfJung Apr 3, 2025
1bfaa16
Merge pull request #4246 from RalfJung/freeze-sensitive-comment
RalfJung Apr 3, 2025
1a89c2b
fix comment nit
RalfJung Apr 3, 2025
1d42087
Merge pull request #4247 from RalfJung/foreign-items-comment
RalfJung Apr 3, 2025
e7de860
test-cargo-miri: permissive provenance should not be needed any more
RalfJung Apr 3, 2025
6a43818
Merge pull request #4249 from RalfJung/test-cargo-miri-strict-provenance
RalfJung Apr 3, 2025
05d64b1
Add another Miri-detected bug to README.md
asomers Apr 3, 2025
bd779df
semver-bump some dependencies
RalfJung Apr 4, 2025
eb00d96
cargo update
RalfJung Apr 4, 2025
3508778
bump parts of test-cargo-miri to edition 2024
RalfJung Apr 4, 2025
a503ecb
Update README.md
asomers Apr 4, 2025
ec1f3af
Merge pull request #4248 from RalfJung/edition-2024
RalfJung Apr 4, 2025
23f1dfe
Merge pull request #4250 from asomers/patch-1
RalfJung Apr 4, 2025
e2c8ae9
fix windows_join_multiple
RalfJung Apr 4, 2025
f868322
Solaris does not have flock
RalfJung Apr 4, 2025
1a4e85a
Merge pull request #4251 from RalfJung/cargo-update
RalfJung Apr 4, 2025
fa06e72
Preparing for merge from rustc
Apr 7, 2025
2eb7791
Merge from rustc
Apr 7, 2025
4c5babd
big-allocs benchmark: use up less of the address space on 32bit
RalfJung Apr 7, 2025
6ac0120
reduce the error tolerance to match algebraic and fast-math operations
RalfJung Apr 7, 2025
f6e4d3b
Merge pull request #4252 from rust-lang/rustup-2025-04-07
RalfJung Apr 7, 2025
e160d93
test_dependencies: bump tokio
RalfJung Apr 8, 2025
e44f5c9
Merge pull request #4257 from RalfJung/bump-tokio
RalfJung Apr 8, 2025
f0fb21e
update lockfile
RalfJung Apr 9, 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
61 changes: 35 additions & 26 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ dependencies = [
name = "cargo-miri"
version = "0.1.0"
dependencies = [
"cargo_metadata 0.18.1",
"cargo_metadata 0.19.2",
"directories",
"rustc-build-sysroot",
"rustc_tools_util 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
Expand Down Expand Up @@ -971,11 +971,11 @@ dependencies = [

[[package]]
name = "directories"
version = "5.0.1"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
dependencies = [
"dirs-sys",
"dirs-sys 0.5.0",
]

[[package]]
Expand All @@ -984,7 +984,7 @@ version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys",
"dirs-sys 0.4.1",
]

[[package]]
Expand All @@ -1005,18 +1005,30 @@ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
"redox_users",
"redox_users 0.4.6",
"windows-sys 0.48.0",
]

[[package]]
name = "dirs-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
dependencies = [
"libc",
"option-ext",
"redox_users 0.5.0",
"windows-sys 0.59.0",
]

[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"redox_users 0.4.6",
"winapi",
]

Expand Down Expand Up @@ -2170,20 +2182,6 @@ dependencies = [
"digest",
]

[[package]]
name = "measureme"
version = "11.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfa4a40f09af7aa6faef38285402a78847d0d72bf8827006cd2a332e1e6e4a8d"
dependencies = [
"log",
"memmap2",
"parking_lot",
"perf-event-open-sys",
"rustc-hash 1.1.0",
"smallvec",
]

[[package]]
name = "measureme"
version = "12.0.1"
Expand Down Expand Up @@ -2281,15 +2279,15 @@ dependencies = [
"libc",
"libffi",
"libloading",
"measureme 11.0.1",
"measureme",
"rand 0.9.0",
"regex",
"rustc_version",
"smallvec",
"tempfile",
"tikv-jemalloc-sys",
"ui_test",
"windows-sys 0.52.0",
"windows-sys 0.59.0",
]

[[package]]
Expand Down Expand Up @@ -2988,6 +2986,17 @@ dependencies = [
"thiserror 1.0.69",
]

[[package]]
name = "redox_users"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
dependencies = [
"getrandom 0.2.15",
"libredox",
"thiserror 2.0.12",
]

[[package]]
name = "regex"
version = "1.11.1"
Expand Down Expand Up @@ -3430,7 +3439,7 @@ dependencies = [
"gimli 0.31.1",
"itertools",
"libc",
"measureme 12.0.1",
"measureme",
"object 0.36.7",
"rustc-demangle",
"rustc_abi",
Expand Down Expand Up @@ -3545,7 +3554,7 @@ dependencies = [
"indexmap",
"jobserver",
"libc",
"measureme 12.0.1",
"measureme",
"memmap2",
"parking_lot",
"portable-atomic",
Expand Down Expand Up @@ -4305,7 +4314,7 @@ dependencies = [
name = "rustc_query_impl"
version = "0.0.0"
dependencies = [
"measureme 12.0.1",
"measureme",
"rustc_data_structures",
"rustc_hashes",
"rustc_hir",
Expand Down
Loading
Loading