Update workspace dependencies to be relative paths
This commit is contained in:
parent
96d932c830
commit
3a5d727899
@ -19,11 +19,12 @@ miniscript = { version = "9", features = ["serde"] }
|
|||||||
bitcoin = { version = "0.29", features = ["serde", "base64", "rand"] }
|
bitcoin = { version = "0.29", features = ["serde", "base64", "rand"] }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
serde_json = { version = "^1.0" }
|
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
|
# Optional dependencies
|
||||||
hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] }
|
hwi = { version = "0.5", optional = true, features = [ "use-miniscript"] }
|
||||||
bip39 = { version = "1.0.1", optional = true }
|
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]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
getrandom = "0.2"
|
getrandom = "0.2"
|
||||||
@ -33,7 +34,7 @@ js-sys = "0.3"
|
|||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
std = []
|
std = []
|
||||||
file-store = [ "std", "bdk_chain/file_store"]
|
file-store = [ "std", "bdk_file_store"]
|
||||||
compiler = ["miniscript/compiler"]
|
compiler = ["miniscript/compiler"]
|
||||||
all-keys = ["keys-bip39"]
|
all-keys = ["keys-bip39"]
|
||||||
keys-bip39 = ["bip39"]
|
keys-bip39 = ["bip39"]
|
||||||
|
@ -12,5 +12,5 @@ readme = "README.md"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
electrum-client = { version = "0.12" }
|
||||||
|
@ -12,5 +12,5 @@ readme = "README.md"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
esplora-client = { version = "0.3" }
|
||||||
|
@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
|
|||||||
repository = "https://github.com/bitcoindevkit/bdk"
|
repository = "https://github.com/bitcoindevkit/bdk"
|
||||||
|
|
||||||
[dependencies]
|
[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" ] }
|
bincode = { version = "2.0.0-rc.2", features = [ "serde" ] }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
|
|
||||||
|
@ -4,6 +4,6 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
bdk_electrum = { path = "../../crates/electrum" }
|
||||||
keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli"}
|
keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli"}
|
||||||
|
@ -6,6 +6,6 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[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" }
|
bdk_esplora = { path = "../../crates/esplora" }
|
||||||
keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli" }
|
keychain_tracker_example_cli = { path = "../keychain_tracker_example_cli" }
|
||||||
|
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[dependencies]
|
[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_file_store = { path = "../../crates/file_store" }
|
||||||
bdk_tmp_plan = { path = "../../nursery/tmp_plan" }
|
bdk_tmp_plan = { path = "../../nursery/tmp_plan" }
|
||||||
bdk_coin_select = { path = "../../nursery/coin_select" }
|
bdk_coin_select = { path = "../../nursery/coin_select" }
|
||||||
|
@ -4,7 +4,7 @@ version = "0.0.1"
|
|||||||
authors = [ "LLFourn <lloyd.fourn@gmail.com>" ]
|
authors = [ "LLFourn <lloyd.fourn@gmail.com>" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bdk_chain = { version = "0.3", path = "../../crates/chain" }
|
bdk_chain = { path = "../../crates/chain", version = "0.3.1" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bdk_chain = { version = "0.3", features = ["miniscript"], path = "../../crates/chain" }
|
bdk_chain = { path = "../../crates/chain", version = "0.3.1", features = ["miniscript"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bdk_chain = { version = "0.3", features = ["miniscript"] }
|
bdk_chain = { path = "../../../crates/chain", version = "0.3.1", features = ["miniscript"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user