Skip to content

Commit f9ababf

Browse files
committed
Merge #383: Add version and patch to dependencies
7db0ad8 Add version and patch to dependencies (Jamil Lambert, PhD) Pull request description: Having a version, path and patch for dependencies ensures that the local version is used during development including indirect dependencies, and publishing is still possible. Closes #380 ACKs for top commit: tcharding: ACK 7db0ad8 Tree-SHA512: 034a675ff7fa7957cfd065ffb66384115094024d3c21bbfcd15a4d3245a72cdb8ab1d8ba4255b5bf29991bc8fe97151608c7fe9d6a8408bf099d467abdbff494
2 parents 0e94709 + 7db0ad8 commit f9ababf

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

integration_test/Cargo.toml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,22 @@ TODO = [] # This is a dirty hack while writing the tests.
5757
[dependencies]
5858
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
5959
env_logger = "0.9.0"
60-
node = { package = "corepc-node", path = "../node", default-features = false }
60+
node = { package = "corepc-node", version = "0.10.0", path = "../node", default-features = false }
6161
rand = "0.8.5"
6262
# Just so we can enable the feature.
63-
types = { package = "corepc-types", path = "../types", features = ["serde-deny-unknown-fields"] }
63+
types = { package = "corepc-types", version = "0.10.0", path = "../types", features = ["serde-deny-unknown-fields"] }
6464

6565
[dev-dependencies]
66+
67+
68+
[patch.crates-io.corepc-client]
69+
path = "../client"
70+
71+
[patch.crates-io.jsonrpc]
72+
path = "../jsonrpc"
73+
74+
[patch.crates-io.corepc-node]
75+
path = "../node"
76+
77+
[patch.crates-io.corepc-types]
78+
path = "../types"

0 commit comments

Comments
 (0)