-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update platform010 & platform010-aarch64 symlinks
Summary: Release notes: - https://blog.rust-lang.org/2025/01/09/Rust-1.84.0.html - https://blog.rust-lang.org/2025/01/30/Rust-1.84.1.html Relevant changes: - `--target wasm32-wasi` renamed to `--target wasm32-wasip1` - `temporary_cstring_as_ptr` lint renamed and extended as `dangling_pointers_from_temporaries` to cover Vec and other types - `feature(exposed_provenance)` stabilized - `feature(pin_deref_mut)` stabilized - `feature(strict_provenance)` stabilized - `fuzzy_provenance_casts` lint is now behind `feature(strict_provenance_lints)` - inherent methods for locking on `std::fs::File` collide with `fs2::FileExt` - [`.lock_exclusive()`](https://docs.rs/fs2/0.4.3/fs2/trait.FileExt.html#tymethod.lock_exclusive) -> [`.lock()`](https://doc.rust-lang.org/1.84.1/std/fs/struct.File.html#method.lock) - [`.lock_shared()`](https://docs.rs/fs2/0.4.3/fs2/trait.FileExt.html#tymethod.lock_shared) -> [`.lock_shared()`](https://doc.rust-lang.org/1.84.1/std/fs/struct.File.html#method.lock_shared) - [`.try_lock_exclusive()`](https://docs.rs/fs2/0.4.3/fs2/trait.FileExt.html#tymethod.try_lock_exclusive) -> `fs2::FileExt::try_lock_exclusive` - [`.try_lock_shared()`](https://docs.rs/fs2/0.4.3/fs2/trait.FileExt.html#tymethod.try_lock_shared) -> `fs2::FileExt::try_lock_shared` - the fs2 try-locking methods have different signature and semantics than File's [`try_lock()`](https://doc.rust-lang.org/1.84.1/std/fs/struct.File.html#method.try_lock) and [`try_lock_shared()`](https://doc.rust-lang.org/1.84.1/std/fs/struct.File.html#method.try_lock_shared); we will want to refactor to use the new standard methods, but this will entail more care than belongs in this diff - expanded `unused_must_use` lint - expanded `unused_parens` lint - (leftover from 1.82) `std::panic::PanicInfo` deprecated in favor of `PanicHookInfo` - forward-compatibility lints regarding never-type fallback - new clippy lints: - `clippy::extra_unused_lifetimes` - `clippy::needless_as_bytes` - `clippy::unnecessary_map_or` Differential Revision: D70601924 fbshipit-source-id: 10f89f92ad44564802b12e7f092e2719ba2fcd98
- Loading branch information
1 parent
52cecd0
commit be71319
Showing
6 changed files
with
11 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ | |
*/ | ||
|
||
#![feature(assert_matches)] | ||
#![feature(pin_deref_mut)] | ||
|
||
pub mod cancellation; | ||
mod details; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters