Skip to content

Commit 3473b7c

Browse files
committed
Fix CI
1 parent e64594b commit 3473b7c

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

bitcoind-tests/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
elements-miniscript = {path = "../"}
11-
elementsd = {version = "0.6.0"}
12-
actual-rand = { package = "rand", version = "0.8.4"}
13-
secp256k1 = {version = "0.27.0", features = ["rand-std"]}
10+
elements-miniscript = { path = "../" }
11+
elementsd = { version = "0.8.0" }
12+
actual-rand = { package = "rand", version = "0.8.4" }
13+
secp256k1 = { version = "0.27.0", features = ["rand-std"] }

contrib/test.sh

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@ rustc --version
99

1010
# Pin dependencies required to build with Rust 1.48
1111
if cargo --version | grep "1\.48"; then
12+
cargo update -p quote --precise 1.0.28
13+
cargo update -p proc-macro2 --precise 1.0.63
1214
cargo update -p serde_json --precise 1.0.99
13-
cargo update -p serde --precise 1.0.156
14-
cargo update -p once_cell --precise 1.13.1
15-
cargo update -p regex --precise 1.7.0
16-
# These two needed for serde_derive with 1.48.0, *in addition*
17-
# to pinning serde itself above.
18-
cargo update -p quote --precise 1.0.30
19-
cargo update -p proc-macro2 --precise 1.0.65
15+
cargo update -p serde --precise 1.0.152
16+
cargo update -p serde_test --precise 1.0.152
2017
fi
2118

2219
# Format if told to

0 commit comments

Comments
 (0)