ci: Remove serde version pinning
The MSRV break in serde is fixed now, remove the serde version pinning.
This commit is contained in:
parent
afcdfa4a59
commit
b05ba16a05
|
@ -20,9 +20,6 @@ fi
|
||||||
|
|
||||||
# We should not have any duplicate dependencies. This catches mistakes made upgrading dependencies
|
# We should not have any duplicate dependencies. This catches mistakes made upgrading dependencies
|
||||||
# in one crate and not in another (e.g. upgrade bitcoin_hashes in bitcoin but not in secp).
|
# in one crate and not in another (e.g. upgrade bitcoin_hashes in bitcoin but not in secp).
|
||||||
cargo update -p serde --precise 1.0.142
|
|
||||||
cargo update -p serde_test --precise 1.0.142
|
|
||||||
cargo update -p serde_derive --precise 1.0.142
|
|
||||||
duplicate_dependencies=$(cargo tree --target=all --all-features --duplicates | wc -l)
|
duplicate_dependencies=$(cargo tree --target=all --all-features --duplicates | wc -l)
|
||||||
if [ "$duplicate_dependencies" -ne 0 ]; then
|
if [ "$duplicate_dependencies" -ne 0 ]; then
|
||||||
echo "Dependency tree is broken, contains duplicates"
|
echo "Dependency tree is broken, contains duplicates"
|
||||||
|
@ -120,8 +117,5 @@ then
|
||||||
# Adding an empty workspace section excludes this crate from the rust-bitcoin workspace.
|
# Adding an empty workspace section excludes this crate from the rust-bitcoin workspace.
|
||||||
echo '[workspace]\n\n' >> Cargo.toml
|
echo '[workspace]\n\n' >> Cargo.toml
|
||||||
|
|
||||||
cargo update -p serde --precise 1.0.142
|
|
||||||
cargo update -p serde_derive --precise 1.0.142
|
|
||||||
|
|
||||||
cargo test --verbose
|
cargo test --verbose
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue