]> Untitled Git - bdk/commitdiff
chore(wallet): Pin `bdk_chain` version to latest release
author志宇 <hello@evanlinjin.me>
Thu, 27 Feb 2025 23:47:20 +0000 (10:47 +1100)
committer志宇 <hello@evanlinjin.me>
Fri, 28 Feb 2025 00:50:28 +0000 (11:50 +1100)
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.

crates/wallet/Cargo.toml

index 9e0e3cb0fd998f7440c33694761d1c8ea54dca43..cc24f2c9fa241873bc8cd330b0a9099da831f872 100644 (file)
@@ -21,8 +21,8 @@ miniscript = { version = "12.0.0", features = [ "serde" ], default-features = fa
 bitcoin = { version = "0.32.4", features = [ "serde", "base64" ], default-features = false }
 serde = { version = "^1.0", features = ["derive"] }
 serde_json = { version = "^1.0" }
-bdk_chain = { path = "../chain", version = "0.21.1", features = [ "miniscript", "serde" ], default-features = false }
-bdk_file_store = { path = "../file_store", version = "0.18.1", optional = true }
+bdk_chain = { version = "0.21.1", features = [ "miniscript", "serde" ], default-features = false }
+bdk_file_store = { version = "0.18.1", optional = true }
 
 # Optional dependencies
 bip39 = { version = "2.0", optional = true }
@@ -41,9 +41,9 @@ test-utils = ["std"]
 lazy_static = "1.4"
 assert_matches = "1.5.0"
 tempfile = "3"
-bdk_chain = { path = "../chain", features = ["rusqlite"] }
+bdk_chain = { version = "0.21.1", features = ["rusqlite"] }
 bdk_wallet = { path = ".", features = ["rusqlite", "file_store", "test-utils"] }
-bdk_file_store = { path = "../file_store" }
+bdk_file_store = { version = "0.18.1" }
 anyhow = "1"
 rand = "^0.8"