Update workspace dependencies to be relative paths

This commit is contained in:
Steve Myers
2023-03-02 20:38:10 -06:00
committed by Daniela Brozzoni
parent 96d932c830
commit 3a5d727899
10 changed files with 12 additions and 11 deletions

View 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"]