From: 志宇 Date: Thu, 27 Feb 2025 23:47:20 +0000 (+1100) Subject: chore(wallet): Pin `bdk_chain` version to latest release X-Git-Tag: wallet-1.2.0~22^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/scripts/extract-tx.html?a=commitdiff_plain;h=0c23410bd863d42e02d6183882d9e2e512ed2a40;p=bdk 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. --- 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"