Fix incorrect comment in ci script

MSRV build breaks because of edition _2021_ not 2018.
This commit is contained in:
Tobin C. Harding 2023-06-20 13:34:38 +10:00
parent 12e014e288
commit 6881080f8e
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ fi
# Pin dependencies as required if we are using MSRV toolchain.
if cargo --version | grep "1\.48"; then
# 1.0.157 uses syn 2.0 which requires edition 2018
# 1.0.157 uses syn 2.0 which requires edition 2021
cargo update -p serde --precise 1.0.156
fi