Skip to content

Commit 6813d7c

Browse files
authored
chore: update to rust 1.77 (microsoft#209563)
* chore: update to rust 1.77 * fix tests
1 parent 3c28146 commit 6813d7c

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

build/azure-pipelines/cli/install-rust-posix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parameters:
22
- name: channel
33
type: string
4-
default: 1.73.0
4+
default: 1.77
55
- name: targets
66
default: []
77
type: object

build/azure-pipelines/cli/install-rust-win32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parameters:
22
- name: channel
33
type: string
4-
default: 1.73.0
4+
default: 1.77
55
- name: targets
66
default: []
77
type: object

cli/Cargo.lock

Lines changed: 7 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/src/singleton.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ pub async fn acquire_singleton(lock_file: &Path) -> Result<SingletonConnection,
5858
.read(true)
5959
.write(true)
6060
.create(true)
61+
.truncate(false)
6162
.open(lock_file)
6263
.map_err(CodeError::SingletonLockfileOpenFailed)?;
6364

0 commit comments

Comments
 (0)