File tree 1 file changed +2
-9
lines changed
1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ downgrade-for-msrv:
8
8
9
9
msrv := ```
10
10
cargo metadata --format-version=1 \
11
- | jq -r ' first(.packages[] | select(.source == null and .name == "actix-tls" )) | .rust_version' \
11
+ | jq -r ' first(.packages[] | select(.source == null and .rust_version )) | .rust_version' \
12
12
| sed -E ' s/^1\.([0-9]{2})$/1\.\1\.0/'
13
13
```
14
14
msrv_rustup := " +" + msrv
@@ -27,13 +27,6 @@ all_crate_features := if os() == "linux" {
27
27
" --features='" + non_linux_all_features_list + " '"
28
28
}
29
29
30
- m :
31
- cargo metadata --format-version=1 \
32
- | jq -r ' first(.packages[] | select(.source == null)) | .rust_version' \
33
- | sed -E ' s/^1\.([0-9]{2})$/1\.\1\.0/' \
34
- | xargs -0 printf " msrv=%s" \
35
- | tee / dev/ stderr
36
-
37
30
# Test workspace code.
38
31
test toolchain = " ":
39
32
cargo {{ toolchain }} test --lib --tests --package=actix-macros
@@ -48,7 +41,7 @@ test-docs toolchain="": && doc
48
41
cargo {{ toolchain }} test --doc --workspace {{ all_crate_features }} --no-fail-fast -- --nocapture
49
42
50
43
# Test workspace.
51
- test-all toolchain = " ": (test toolchain) (test-docs )
44
+ test-all toolchain = " ": (test toolchain) (test-docs toolchain )
52
45
53
46
# Document crates in workspace.
54
47
doc * args :
You can’t perform that action at this time.
0 commit comments