Merge pull request #6819 from roc-lang/rust-1-77-2-upgrade

Rust 1.77.2 upgrade
This commit is contained in:
Anton-4 2024-07-06 03:23:54 +02:00 committed by GitHub
commit 1bcf30391b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 74 additions and 77 deletions

View file

@ -559,6 +559,7 @@ pub(crate) fn open_mmap_mut(path: &Path, length: usize) -> MmapMut {
.read(true)
.write(true)
.create(true)
.truncate(false)
.open(path)
.unwrap_or_else(|e| internal_error!("failed to create or open file {path:?}: {e}"));
out_file