From 0c23410bd863d42e02d6183882d9e2e512ed2a40 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E5=BF=97=E5=AE=87?= Date: Fri, 28 Feb 2025 10:47:20 +1100 Subject: [PATCH] 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. --- crates/wallet/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/wallet/Cargo.toml b/crates/wallet/Cargo.toml index 9e0e3cb0..cc24f2c9 100644 --- a/crates/wallet/Cargo.toml +++ b/crates/wallet/Cargo.toml @@ -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" -- 2.49.0