]> Untitled Git - bdk/commitdiff
Update workspace dependencies to be relative paths
authorSteve Myers <steve@notmandatory.org>
Fri, 3 Mar 2023 02:38:10 +0000 (20:38 -0600)
committerDaniela Brozzoni <danielabrozzoni@protonmail.com>
Fri, 3 Mar 2023 16:44:08 +0000 (17:44 +0100)
crates/bdk/Cargo.toml
crates/electrum/Cargo.toml
crates/esplora/Cargo.toml
crates/file_store/Cargo.toml
example-crates/keychain_tracker_electrum/Cargo.toml
example-crates/keychain_tracker_esplora/Cargo.toml
example-crates/keychain_tracker_example_cli/Cargo.toml
nursery/coin_select/Cargo.toml
nursery/tmp_plan/Cargo.toml
nursery/tmp_plan/bdk_tmp_plan/Cargo.toml

index ca0efa9c7b36bcc68ac93fda6fd9fe2748be7c87..c4b0102853236c046d3d7fa781ff9d9cfc6b6c3c 100644 (file)
@@ -19,11 +19,12 @@ miniscript = { version = "9", features = ["serde"] }
 bitcoin = { version = "0.29", features = ["serde", "base64", "rand"] }
 serde = { version = "^1.0", features = ["derive"] }
 serde_json = { version = "^1.0" }
-bdk_chain = { version = "0.1", features = ["miniscript", "serde"] }
+bdk_chain = { path = "../chain", version = "0.3.1", features = ["miniscript", "serde"] }
 
 # Optional dependencies
 hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] }
 bip39 = { version = "1.0.1", optional = true }
+bdk_file_store = { path = "../file_store", version = "0.0.1", optional = true }
 
 [target.'cfg(target_arch = "wasm32")'.dependencies]
 getrandom = "0.2"
@@ -33,7 +34,7 @@ js-sys = "0.3"
 [features]
 default = ["std"]
 std = []
-file-store = [ "std", "bdk_chain/file_store"]
+file-store = [ "std", "bdk_file_store"]
 compiler = ["miniscript/compiler"]
 all-keys = ["keys-bip39"]
 keys-bip39 = ["bip39"]
index 05b93160ef407c9938fa17c2705fd77c562102ec..a7a7ec2b4a83102c2c8c9ccc117d22da9db4a8ed 100644 (file)
@@ -12,5 +12,5 @@ readme = "README.md"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-bdk_chain = { path = "../chain", version = "0.3", features = ["serde", "miniscript"] }
+bdk_chain = { path = "../chain", version = "0.3.1", features = ["serde", "miniscript"] }
 electrum-client = { version = "0.12" }
index c76325b7d6eee08c33e758950cd382e679e969f1..2ab251ea10dd37873b375a7c9ca5289c1830ea3d 100644 (file)
@@ -12,5 +12,5 @@ readme = "README.md"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-bdk_chain = { path = "../chain", version = "0.3", features = ["serde", "miniscript"] }
+bdk_chain = { path = "../chain", version = "0.3.1", features = ["serde", "miniscript"] }
 esplora-client = { version = "0.3" }
index 06d7617126b874dd53032ba011fcc2f2ef9a3d8f..38a98f0e4ab180ad590cd5cf7856b489120b0f07 100644 (file)
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
 repository = "https://github.com/bitcoindevkit/bdk"
 
 [dependencies]
-bdk_chain = { path = "../chain", version = "0.3", features = [ "serde", "miniscript" ] }
+bdk_chain = { path = "../chain", version = "0.3.1", features = [ "serde", "miniscript" ] }
 bincode = { version = "2.0.0-rc.2", features = [ "serde" ] }
 serde = { version = "1", features = ["derive"] }
 
index 4eceaa70de6632f1b47242ef50fb8587ffe0d8a5..e2cbf6affc0ffc16647b70b90ab3658a46a106bd 100644 (file)
@@ -4,6 +4,6 @@ version = "0.1.0"
 edition = "2021"
 
 [dependencies]
-bdk_chain = { path = "../../crates/chain", version = "0.3", features = ["serde"] }
+bdk_chain = { path = "../../crates/chain", version = "0.3.1", features = ["serde"] }
 bdk_electrum = { path = "../../crates/electrum" }
 keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli"}
index 57e9d9c04b2b764833479006b06dfe5b7a4fbc2e..20a703180ce69ceba1f1c4faea64982492153320 100644 (file)
@@ -6,6 +6,6 @@ edition = "2021"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-bdk_chain = { path = "../../crates/chain", version = "0.3", features = ["serde", "miniscript"] }
+bdk_chain = { path = "../../crates/chain", version = "0.3.1", features = ["serde", "miniscript"] }
 bdk_esplora = { path = "../../crates/esplora" }
 keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli" }
index e2565e4814334d539e944be7ab0e854ab3ea3a91..e805fd8f478b26ab5dceb760020fbe8f5a904d76 100644 (file)
@@ -5,7 +5,7 @@ edition = "2021"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 [dependencies]
-bdk_chain = { path = "../../crates/chain", version = "0.3", features = ["serde", "miniscript"]}
+bdk_chain = { path = "../../crates/chain", version = "0.3.1", features = ["serde", "miniscript"]}
 bdk_file_store = { path = "../../crates/file_store" }
 bdk_tmp_plan = { path = "../../nursery/tmp_plan" }
 bdk_coin_select = { path = "../../nursery/coin_select" }
index b13507526c672d5024b1886dcf4a0537a1044014..3c338d0e4954a8ddacdfd8fc1fd5ebf77c291966 100644 (file)
@@ -4,7 +4,7 @@ version = "0.0.1"
 authors = [ "LLFourn <lloyd.fourn@gmail.com>" ]
 
 [dependencies]
-bdk_chain = { version = "0.3", path = "../../crates/chain" }
+bdk_chain = { path = "../../crates/chain", version = "0.3.1" }
 
 [features]
 default = ["std"]
index 67eb57ef92477e00d1cbdb7fcdfae7010c2ce444..39a603c24e64bbb3243d83a19828b1a1c96afcc4 100644 (file)
@@ -6,7 +6,7 @@ edition = "2021"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-bdk_chain = {  version = "0.3", features = ["miniscript"], path = "../../crates/chain" }
+bdk_chain = {  path = "../../crates/chain", version = "0.3.1", features = ["miniscript"] }
 
 [features]
 default = ["std"]
index ecbfaad6a9092046c9d3f066d977fdfee5ef7e12..c2d615df8a345150b2656b1a8fbb8d99dddec2e3 100644 (file)
@@ -6,7 +6,7 @@ edition = "2021"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-bdk_chain = {  version = "0.3", features = ["miniscript"] }
+bdk_chain = {  path = "../../../crates/chain", version = "0.3.1", features = ["miniscript"] }
 
 [features]
 default = ["std"]