Skip to content

Commit 0c23410

Browse files
committed
chore(wallet): Pin bdk_chain version to latest release
Remove the use of Cargo `path` ref for the `bdk_chain` and `bdk_file_store` dependencies. This is the first step to move `bdk_wallet` into a new workspace.
1 parent 7ce016d commit 0c23410

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/wallet/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ miniscript = { version = "12.0.0", features = [ "serde" ], default-features = fa
2121
bitcoin = { version = "0.32.4", features = [ "serde", "base64" ], default-features = false }
2222
serde = { version = "^1.0", features = ["derive"] }
2323
serde_json = { version = "^1.0" }
24-
bdk_chain = { path = "../chain", version = "0.21.1", features = [ "miniscript", "serde" ], default-features = false }
25-
bdk_file_store = { path = "../file_store", version = "0.18.1", optional = true }
24+
bdk_chain = { version = "0.21.1", features = [ "miniscript", "serde" ], default-features = false }
25+
bdk_file_store = { version = "0.18.1", optional = true }
2626

2727
# Optional dependencies
2828
bip39 = { version = "2.0", optional = true }
@@ -41,9 +41,9 @@ test-utils = ["std"]
4141
lazy_static = "1.4"
4242
assert_matches = "1.5.0"
4343
tempfile = "3"
44-
bdk_chain = { path = "../chain", features = ["rusqlite"] }
44+
bdk_chain = { version = "0.21.1", features = ["rusqlite"] }
4545
bdk_wallet = { path = ".", features = ["rusqlite", "file_store", "test-utils"] }
46-
bdk_file_store = { path = "../file_store" }
46+
bdk_file_store = { version = "0.18.1" }
4747
anyhow = "1"
4848
rand = "^0.8"
4949

0 commit comments

Comments
 (0)