Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 1d183c0

Browse files
remove tokio pins
1 parent 6e8512e commit 1d183c0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,13 @@ jobs:
2828
- name: Pin crates for MSRV
2929
if: matrix.msrv
3030
run: |
31-
# Tokio MSRV on versions 1.17 through 1.26 is rustc 1.49. Above 1.26 MSRV is 1.56.
32-
cargo update -p tokio --precise "1.14.1" --verbose
3331
# The serde_json crate switched to Rust edition 2021 starting with v1.0.101, i.e., has MSRV of 1.56
3432
cargo update -p serde_json --precise "1.0.99" --verbose
3533
cargo update -p serde --precise "1.0.156" --verbose
3634
# The quote crate switched to Rust edition 2021 starting with v1.0.31, i.e., has MSRV of 1.56
3735
cargo update -p quote --precise "1.0.30" --verbose
3836
# The proc-macro2 crate switched to Rust edition 2021 starting with v1.0.66, i.e., has MSRV of 1.56
3937
cargo update -p proc-macro2 --precise "1.0.65" --verbose
40-
# Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees
41-
cargo update -p log --precise "0.4.18" --verbose
4238
- name: Cargo check
4339
run: cargo check --release
4440
- name: Check documentation

0 commit comments

Comments
 (0)