File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed
Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -10,20 +10,15 @@ cargo update -p serde_derive --precise 1.0.142
1010cargo --version
1111rustc --version
1212
13- # Work out if we are using a nightly toolchain.
14- MSRV=false
13+ # Pin dependencies required to build with Rust 1.41.1
1514if cargo --version | grep " 1\.41\.0" ; then
16- MSRV=true
17- fi
18-
19- if cargo --version | grep " 1\.47\.0" ; then
15+ cargo update -p url --precise 2.2.2
16+ cargo update -p form_urlencoded --precise 1.0.1
2017 cargo update -p once_cell --precise 1.13.1
2118fi
2219
23- # form_urlencoded 1.1.0 breaks MSRV.
24- if [ " $MSRV " = true ]; then
25- cargo update -p url --precise 2.2.2
26- cargo update -p form_urlencoded --precise 1.0.1
20+ # Pin dependencies required to build with Rust 1.47.0
21+ if cargo --version | grep " 1\.47\.0" ; then
2722 cargo update -p once_cell --precise 1.13.1
2823fi
2924
You can’t perform that action at this time.
0 commit comments