Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions integration_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,22 @@ TODO = [] # This is a dirty hack while writing the tests.
[dependencies]
bitcoin = { version = "0.32.0", default-features = false, features = ["std", "serde"] }
env_logger = "0.9.0"
node = { package = "corepc-node", path = "../node", default-features = false }
node = { package = "corepc-node", version = "0.10.0", path = "../node", default-features = false }
rand = "0.8.5"
# Just so we can enable the feature.
types = { package = "corepc-types", path = "../types", features = ["serde-deny-unknown-fields"] }
types = { package = "corepc-types", version = "0.10.0", path = "../types", features = ["serde-deny-unknown-fields"] }

[dev-dependencies]


[patch.crates-io.corepc-client]
path = "../client"

[patch.crates-io.jsonrpc]
path = "../jsonrpc"

[patch.crates-io.corepc-node]
path = "../node"

[patch.crates-io.corepc-types]
path = "../types"