Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1bbabb7
std::net: adding `unix_socket_exclbind` feature for solaris/illumos.
devnexen Apr 4, 2024
f3383e4
Do not include NUL-terminator in computed length
Darksonn Jun 12, 2025
6a1b7df
Use a NonNull pointer
Darksonn Jun 23, 2025
0c405ae
Update version placeholders
cuviper Jun 23, 2025
1e9c63f
Update stage0 to 1.89.0-beta.1
cuviper Jun 24, 2025
c388e68
Update `STAGE0_MISSING_TARGETS`
cuviper Jun 24, 2025
6cacbc7
Update `cfg(bootstrap)`
cuviper Jun 24, 2025
e0f8e86
Skip unnecessary components in x64 try builds
Kobzol Jun 24, 2025
25dee4e
Skip more dist components
Kobzol Jun 24, 2025
8034154
Do not build GCC in fast try builds
Kobzol Jun 24, 2025
58bc1dc
Remove `mut`
Kobzol Jun 25, 2025
508021a
Add windows-gnullvm hosts to the manifest
mati865 Jun 25, 2025
b2be01c
rustdoc: show attributes on enum variants
lolbinarycat Jun 24, 2025
7a79454
update internal `send_signal` comment
fee1-dead Jun 27, 2025
cd1713e
BTreeSet: remove duplicated code by reusing `from_sorted_iter`
xu-cheng Jun 27, 2025
9090199
Update ui.rs
leopardracer Jun 27, 2025
3a34dac
Update README.md
leopardracer Jun 27, 2025
39092cc
Update dangling_pointer_to_raw_pointer.rs
leopardracer Jun 27, 2025
00b64f8
Use tidy to sort `sym::*` items
yotamofek Jun 27, 2025
fa175c1
Rollup merge of #123476 - devnexen:std_net_solaris_exclbind, r=Mark-S…
matthiaskrgr Jun 28, 2025
12d6d42
Rollup merge of #142708 - Darksonn:location-len-without-nul, r=Mark-S…
matthiaskrgr Jun 28, 2025
500b1da
Rollup merge of #142963 - Kobzol:try-build-skip, r=jieyouxu
matthiaskrgr Jun 28, 2025
5e7a2ad
Rollup merge of #142974 - cuviper:stage0-bump, r=Mark-Simulacrum
matthiaskrgr Jun 28, 2025
ec881a2
Rollup merge of #142987 - lolbinarycat:rustdoc-non_exhaustive-enum-v-…
matthiaskrgr Jun 28, 2025
104937d
Rollup merge of #143031 - mati865:push-mutywntmvomx, r=Mark-Simulacrum
matthiaskrgr Jun 28, 2025
2680968
Rollup merge of #143082 - fee1-dead-contrib:push-qvvppzukvkxt, r=Mark…
matthiaskrgr Jun 28, 2025
c347bf7
Rollup merge of #143110 - yotamofek:pr/tidy-sort-for-symbols, r=nneth…
matthiaskrgr Jun 28, 2025
e1cb7c3
Rollup merge of #143111 - xu-cheng:btreeset_from_iter, r=Mark-Simulacrum
matthiaskrgr Jun 28, 2025
a58f216
Rollup merge of #143114 - leopardracer:master, r=RalfJung
matthiaskrgr Jun 28, 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
Update README.md
  • Loading branch information
leopardracer authored Jun 27, 2025
commit 3a34dac6c36f4e725d7e16022d12c9f58ebc6c2a
2 changes: 1 addition & 1 deletion src/tools/miri/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ Definite bugs found:
* [Occasional memory leak in `std::mpsc` channels](https://github.com/rust-lang/rust/issues/121582) (original code in [crossbeam](https://github.com/crossbeam-rs/crossbeam/pull/1084))
* [Weak-memory-induced memory leak in Windows thread-local storage](https://github.com/rust-lang/rust/pull/124281)
* [A bug in the new `RwLock::downgrade` implementation](https://rust-lang.zulipchat.com/#narrow/channel/269128-miri/topic/Miri.20error.20library.20test) (caught by Miri before it landed in the Rust repo)
* [Mockall reading unintialized memory when mocking `std::io::Read::read`, even if all expectations are satisfied](https://github.com/asomers/mockall/issues/647) (caught by Miri running Tokio's test suite)
* [Mockall reading uninitialized memory when mocking `std::io::Read::read`, even if all expectations are satisfied](https://github.com/asomers/mockall/issues/647) (caught by Miri running Tokio's test suite)
* [`ReentrantLock` not correctly dealing with reuse of addresses for TLS storage of different threads](https://github.com/rust-lang/rust/pull/141248)

Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows is currently just an experiment):
Expand Down