Skip to content

Commit

Permalink
Update dependencies to the latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 25, 2022
1 parent 2027d64 commit f2b059a
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 108 deletions.
123 changes: 44 additions & 79 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ required-features = ["cli"]

[dependencies]
amplify = "3.13.0"
strict_encoding_crate = { package = "strict_encoding", version = "2.0.0-alpha.1", features = ["bitcoin", "derive"], optional = true }
strict_encoding_crate = { package = "strict_encoding", version = "0.9.0-rc.1", features = ["bitcoin", "derive"], optional = true }
bitcoin = "0.29.2"
bitcoin_scripts = "0.9.0-alpha.1"
bitcoin_blockchain = "0.9.0-alpha.1"
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "./hd" }
bitcoin_onchain = { version = "0.9.0-alpha.1", path = "./onchain" }
bitcoin_hwi = { version = "0.2.0", optional = true }
Expand All @@ -41,10 +41,10 @@ slip132 = { version = "0.9.0-alpha.1", path = "./slip132", features = ["strict_e
miniscript_crate = { package = "miniscript", version = "9.0.0", optional = true }
electrum-client = { version = "0.12.0", optional = true }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.5", features = ["hex"], optional = true }
serde_yaml = { version = "0.8.21", optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }
serde_yaml = { version = "0.9", optional = true }
chrono = "0.4"
clap = { version = "~3.1.18", optional = true, features = ["derive"] }
clap = { version = "~3.2.23", optional = true, features = ["derive"] }
bip39 = { version = "1.0.1", optional = true }
aes = { version = "0.7.5", optional = true }
rpassword = { version = "5.0.1", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions descriptors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ exclude = []

[dependencies]
amplify = "3.13.0"
strict_encoding = "2.0.0-alpha.2"
strict_encoding = "0.9.0-rc.1"
bitcoin = "0.29.2"
bitcoin_scripts = "0.9.0-alpha.1"
bitcoin_blockchain = "0.9.0-alpha.1"
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
miniscript_crate = { package = "miniscript", version = "9.0.0", features = ["compiler"], optional = true }
chrono = "0.4.19"
serde_crate = { package = "serde", version = "1", optional = true }
serde_with = { version = "1.12", features = ["hex"], optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }

[features]
all = [
Expand Down
4 changes: 2 additions & 2 deletions hd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ exclude = []

[dependencies]
amplify = "3.13.0"
strict_encoding = "2.0.0-alpha.2"
strict_encoding = "0.9.0-rc.1"
bitcoin = "0.29.2"
secp256k1 = { version = "0.24.1", features = ["global-context"] }
secp256k1 = { version = "0.24.2", features = ["global-context"] }
miniscript = { version = "9.0.0", optional = true }
slip132 = { version = "0.9.0-alpha.1", path = "../slip132" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion onchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = []
[dependencies]
amplify = "3.13.0"
bitcoin = "0.29.2"
strict_encoding = "2.0.0-alpha.2"
strict_encoding = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
descriptors = { version = "0.9.0-alpha.1", path = "../descriptors", optional = true }
miniscript = { version = "9.0.0", optional = true }
Expand Down
13 changes: 6 additions & 7 deletions psbt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,20 @@ exclude = []

[dependencies]
amplify = "3.13.0"
strict_encoding = "2.0.0-alpha.2"
confined_encoding = "0.9.0-alpha.2"
commit_verify = "0.9.0-alpha.1"
strict_encoding = "0.9.0-rc.1"
commit_verify = "0.9.0-rc.1"
bitcoin = { version = "0.29.2", features = ["base64"] }
bitcoin_scripts = "0.9.0-alpha.3"
bitcoin_blockchain = "0.9.0-alpha.1"
bitcoin_scripts = "0.9.0-rc.1"
bitcoin_blockchain = "0.9.0-rc.1"
bitcoin_hd = { version = "0.9.0-alpha.1", path = "../hd" }
bitcoin_onchain = { version = "0.9.0-alpha.1", path = "../onchain" }
descriptors = { version = "0.9.0-alpha.1", path = "../descriptors", optional = true }
miniscript = { version = "9.0.0", optional = true }
serde_crate = { package = "serde", version = "1", optional = true }
serde_with = { version = "1.12", features = ["hex"], optional = true }
serde_with = { version = "1.14", features = ["hex"], optional = true }

[dev-dependencies]
strict_encoding_test = "2.0.0-alpha.1"
strict_encoding_test = "0.9.0-rc.1"

[features]
default = []
Expand Down
Loading

0 comments on commit f2b059a

Please sign in to comment.