File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 5
5
6
6
variables :
7
7
CARGO_TERM_COLOR : always
8
- RUST_TOOLCHAIN_VERSION : " 1.73 "
8
+ RUST_TOOLCHAIN_VERSION : " 1.75 "
9
9
10
10
# variables set by pipeline
11
11
# - BASE_IMAGE
Original file line number Diff line number Diff line change 20
20
CARGO_TERM_COLOR : always
21
21
NODE_VERSION : " 18.17.1"
22
22
PYTHON_VERSION : " 3.11"
23
- RUST_TOOLCHAIN_VERSION : " 1.73 "
23
+ RUST_TOOLCHAIN_VERSION : " 1.75 "
24
24
RUST_TOOLCHAIN_COMPONENTS : rustfmt clippy
25
25
26
26
jobs :
Original file line number Diff line number Diff line change 11
11
12
12
env :
13
13
CARGO_TERM_COLOR : always
14
- RUST_TOOLCHAIN_VERSION : " 1.73 "
14
+ RUST_TOOLCHAIN_VERSION : " 1.75 "
15
15
RUST_TOOLCHAIN_COMPONENTS : rustfmt clippy
16
16
17
17
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
Original file line number Diff line number Diff line change @@ -521,6 +521,15 @@ impl PackageStore {
521
521
}
522
522
}
523
523
524
+ impl < ' a > IntoIterator for & ' a PackageStore {
525
+ type IntoIter = qsc_data_structures:: index_map:: Iter < ' a , PackageId , Package > ;
526
+ type Item = ( PackageId , & ' a Package ) ;
527
+
528
+ fn into_iter ( self ) -> Self :: IntoIter {
529
+ self . iter ( )
530
+ }
531
+ }
532
+
524
533
/// A trait to find elements in a package.
525
534
pub trait PackageLookup {
526
535
/// Gets a block.
Original file line number Diff line number Diff line change 13
13
import functools
14
14
15
15
python_ver = (3 , 11 ) # Python support for Windows on ARM64 requires v3.11 or later
16
- rust_ver = (1 , 73 ) # Ensure Rust version 1.73 or later is installed
16
+ rust_ver = (1 , 75 ) # Ensure Rust version 1.75 or later is installed
17
17
node_ver = (
18
18
18 ,
19
19
17 ,
20
20
)
21
21
wasmpack_ver = (0 , 12 , 1 ) # Latest tested wasm-pack version
22
- rust_fmt_ver = (1 , 6 , 0 ) # Current version when Rust 1.73 shipped
23
- clippy_ver = (0 , 1 , 69 )
22
+ rust_fmt_ver = (1 , 7 , 0 ) # Current version when Rust 1.75 shipped
23
+ clippy_ver = (0 , 1 , 75 )
24
24
25
25
# Disable buffered output so that the log statements and subprocess output get interleaved in proper order
26
26
print = functools .partial (print , flush = True )
You can’t perform that action at this time.
0 commit comments