We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
serde_json
1 parent e404c12 commit 48c6486Copy full SHA for 48c6486
ci/ci-tests.sh
@@ -11,6 +11,9 @@ HOST_PLATFORM="$(rustc --version --verbose | grep "host:" | awk '{ print $2 }')"
11
# Sadly the log crate is always a dependency of tokio until 1.20, and has no reasonable MSRV guarantees
12
[ "$RUSTC_MINOR_VERSION" -lt 49 ] && cargo update -p log --precise "0.4.18" --verbose
13
14
+# serde_json 1.0.101 uses rust edition 2021, i.e., has MSRV of 1.56
15
+[ "$RUSTC_MINOR_VERSION" -lt 56 ] && cargo update -p serde_json --precise "1.0.100" --verbose
16
+
17
# The addr2line v0.20 crate (a dependency of `backtrace` starting with 0.3.68) relies on 1.55+
18
[ "$RUSTC_MINOR_VERSION" -lt 55 ] && cargo update -p backtrace --precise "0.3.67" --verbose
19
0 commit comments