File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 24
24
uses : dtolnay/rust-toolchain@master
25
25
with :
26
26
toolchain : ${{ matrix.rust }}
27
- - name : Override libc version (Rust 1.56 only)
27
+ - name : Pin to old dependency versions (Rust 1.56 only)
28
28
if : matrix.rust == '1.56'
29
- run : cargo update -p libc --precise 0.2.163
29
+ run : |
30
+ cargo update -p libc --precise 0.2.163
31
+ cargo update -p windows-sys --precise 0.52.0
30
32
- name : Setup cache
31
33
uses : Swatinem/rust-cache@v2
32
34
- name : Test (no features)
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ rust-version = "1.56"
16
16
libc = { version = " 0.2" , default-features = false }
17
17
18
18
[target .'cfg(windows)' .dependencies .windows-sys ]
19
- version = " 0.52"
19
+ version = " >= 0.52, <=0.59 "
20
20
features = [
21
21
" Win32_Foundation" ,
22
22
" Win32_System_Diagnostics_Debug" ,
You can’t perform that action at this time.
0 commit comments