File tree 3 files changed +16
-11
lines changed
3 files changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -58,24 +58,17 @@ jobs:
58
58
with :
59
59
toolchain : ${{ matrix.version.version }}
60
60
61
- - name : Install cargo-hack and cargo-ci-cache-clean
61
+ - name : Install just, cargo-hack, cargo-ci-cache-clean
62
62
63
63
with :
64
- tool : cargo-hack,cargo-ci-cache-clean
64
+ tool : just, cargo-hack,cargo-ci-cache-clean
65
65
66
66
- name : Generate Cargo.lock
67
67
run : cargo generate-lockfile
68
68
69
69
- name : workaround MSRV issues
70
70
if : matrix.version.name == 'msrv'
71
- run : |
72
- cargo update -p=ahash --precise=0.8.7
73
- cargo update -p=ciborium --precise=0.2.1
74
- cargo update -p=ciborium-ll --precise=0.2.1
75
- cargo update -p=time --precise=0.3.16
76
- cargo update -p=clap --precise=4.3.24
77
- cargo update -p=clap_lex --precise=0.5.0
78
- cargo update -p=anstyle --precise=1.0.2
71
+ run : just downgrade-msrv
79
72
80
73
- name : check lib
81
74
if : >
Original file line number Diff line number Diff line change 1
1
[workspace ]
2
+ resolver = " 2"
2
3
members = [
3
4
" actix-codec" ,
4
5
" actix-macros" ,
@@ -12,7 +13,6 @@ members = [
12
13
" local-channel" ,
13
14
" local-waker" ,
14
15
]
15
- resolver = " 2"
16
16
17
17
[workspace .package ]
18
18
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 1
1
_ list :
2
2
@ just --list
3
3
4
+ # Downgrade dev-dependencies necessary to run MSRV checks/tests.
5
+ [private ]
6
+ downgrade-msrv :
7
+ cargo update -p=ahash --precise=0.8.7
8
+ cargo update -p=ciborium --precise=0.2.1
9
+ cargo update -p=ciborium-ll --precise=0.2.1
10
+ cargo update -p=time --precise=0.3.16
11
+ cargo update -p=clap --precise=4.3.24
12
+ cargo update -p=clap_lex --precise=0.5.0
13
+ cargo update -p=anstyle --precise=1.0.2
14
+ cargo update -p=trybuild --precise=1.0.89
15
+
4
16
# Document crates in workspace.
5
17
doc :
6
18
RUSTDOCFLAGS=" --cfg=docsrs" cargo + nightly doc --no-deps --workspace --features=rustls,openssl
You can’t perform that action at this time.
0 commit comments