File tree 6 files changed +13
-13
lines changed
6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ jobs:
192
192
with :
193
193
key : macOS10-15-x86_64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain')
194
194
}}-v2
195
- path : ' ~/.rustup/toolchains/1.75 .0-*
195
+ path : ' ~/.rustup/toolchains/1.76 .0-*
196
196
197
197
~/.rustup/update-hashes
198
198
@@ -276,7 +276,7 @@ jobs:
276
276
with :
277
277
key : macOS11-ARM64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain')
278
278
}}-v2
279
- path : ' ~/.rustup/toolchains/1.75 .0-*
279
+ path : ' ~/.rustup/toolchains/1.76 .0-*
280
280
281
281
~/.rustup/update-hashes
282
282
@@ -367,7 +367,7 @@ jobs:
367
367
uses : actions/cache@v3
368
368
with :
369
369
key : Linux-x86_64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
370
- path : ' ~/.rustup/toolchains/1.75 .0-*
370
+ path : ' ~/.rustup/toolchains/1.76 .0-*
371
371
372
372
~/.rustup/update-hashes
373
373
Original file line number Diff line number Diff line change 38
38
uses : actions/cache@v3
39
39
with :
40
40
key : Linux-ARM64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
41
- path : ' ~/.rustup/toolchains/1.75 .0-*
41
+ path : ' ~/.rustup/toolchains/1.76 .0-*
42
42
43
43
~/.rustup/update-hashes
44
44
@@ -130,7 +130,7 @@ jobs:
130
130
uses : actions/cache@v3
131
131
with :
132
132
key : Linux-x86_64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
133
- path : ' ~/.rustup/toolchains/1.75 .0-*
133
+ path : ' ~/.rustup/toolchains/1.76 .0-*
134
134
135
135
~/.rustup/update-hashes
136
136
@@ -232,7 +232,7 @@ jobs:
232
232
uses : actions/cache@v3
233
233
with :
234
234
key : macOS11-x86_64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
235
- path : ' ~/.rustup/toolchains/1.75 .0-*
235
+ path : ' ~/.rustup/toolchains/1.76 .0-*
236
236
237
237
~/.rustup/update-hashes
238
238
@@ -441,7 +441,7 @@ jobs:
441
441
uses : actions/cache@v3
442
442
with :
443
443
key : macOS10-15-x86_64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
444
- path : ' ~/.rustup/toolchains/1.75 .0-*
444
+ path : ' ~/.rustup/toolchains/1.76 .0-*
445
445
446
446
~/.rustup/update-hashes
447
447
@@ -508,7 +508,7 @@ jobs:
508
508
uses : actions/cache@v3
509
509
with :
510
510
key : macOS11-ARM64-rustup-${{ hashFiles('src/rust/engine/rust-toolchain') }}-v2
511
- path : ' ~/.rustup/toolchains/1.75 .0-*
511
+ path : ' ~/.rustup/toolchains/1.76 .0-*
512
512
513
513
~/.rustup/update-hashes
514
514
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ fn test_float() {
95
95
96
96
assert_eq ! (
97
97
"Problem parsing --bad float value:\n 1:swallow\n ^\n \
98
- Expected \" +\" , \" -\" or ['0' ..= '9'] at line 1 column 1"
98
+ Expected \" +\" , \" -\" or ['0'..='9'] at line 1 column 1"
99
99
. to_owned( ) ,
100
100
args. get_float( & option_id!( "bad" ) ) . unwrap_err( )
101
101
) ;
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ fn test_float() {
138
138
139
139
assert_eq ! (
140
140
"Problem parsing PANTS_BAD float value:\n 1:swallow\n ^\n \
141
- Expected \" +\" , \" -\" or ['0' ..= '9'] at line 1 column 1"
141
+ Expected \" +\" , \" -\" or ['0'..='9'] at line 1 column 1"
142
142
. to_owned( ) ,
143
143
env. get_float( & option_id!( "pants" , "bad" ) ) . unwrap_err( )
144
144
) ;
Original file line number Diff line number Diff line change @@ -89,13 +89,13 @@ fn test_parse_int() {
89
89
check_int ( 9223372036854775807 , "9223372036854775807" ) ;
90
90
check_int ( -9223372036854775808 , "-9223372036854775808" ) ;
91
91
assert_eq ! (
92
- "Problem parsing foo int value:\n 1:badint\n ^\n Expected \" +\" , \" -\" or ['0' ..= '9'] \
92
+ "Problem parsing foo int value:\n 1:badint\n ^\n Expected \" +\" , \" -\" or ['0'..='9'] \
93
93
at line 1 column 1"
94
94
. to_owned( ) ,
95
95
parse_int( "badint" ) . unwrap_err( ) . render( "foo" )
96
96
) ;
97
97
assert_eq ! (
98
- "Problem parsing foo int value:\n 1:12badint\n --^\n Expected \" _\" , EOF or ['0' ..= '9'] \
98
+ "Problem parsing foo int value:\n 1:12badint\n --^\n Expected \" _\" , EOF or ['0'..='9'] \
99
99
at line 1 column 3"
100
100
. to_owned( ) ,
101
101
parse_int( "12badint" ) . unwrap_err( ) . render( "foo" )
Original file line number Diff line number Diff line change 1
1
[toolchain]
2
- channel = "1.75 .0"
2
+ channel = "1.76 .0"
3
3
# NB: We don't list the components (namely `clippy` and `rustfmt`) and instead rely on either the
4
4
# the profile being "default" (by-and-large the default profile) or the nice error message from
5
5
# `cargo fmt` and `cargo clippy` if the required component isn't installed
You can’t perform that action at this time.
0 commit comments