Skip to content

Commit

Permalink
Start of work on v0.6 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 28, 2021
1 parent f6ca643 commit 1c2811f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 23 deletions.
22 changes: 9 additions & 13 deletions Cargo.lock

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

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

[dependencies]
amplify = { version = "3.9.1", features = ["stringly_conversions", "std"] }
lnpbp_bech32 = { version = "0.5.0", path = "bech32" }
lnpbp_chain = { version = "0.5.0", path = "chain" }
lnpbp_elgamal = { version = "0.5.0", path = "elgamal", optional = true }
lnpbp_bech32 = { version = "0.6.0", path = "bech32" }
lnpbp_chain = { version = "0.6.0", path = "chain" }
lnpbp_elgamal = { version = "0.6.0", path = "elgamal", optional = true }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", features = ["hex"], optional = true }
# serde_with_macros = { version = "~1.2.0", optional = true } # Fix for the problem in 1.3.0
Expand Down
4 changes: 2 additions & 2 deletions bech32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_bech32"
version = "0.5.0"
version = "0.6.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNPBP-14 implementation"
Expand All @@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
amplify = "3.8.1"
bitcoin_hashes = "0.10.0"
strict_encoding = "1.7.4"
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop" }
bech32 = "0.8.1"
deflate = { version = "0.8.6", optional = true }
inflate = { version = "0.4.5", optional = true }
Expand Down
8 changes: 4 additions & 4 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_chain"
version = "0.5.0"
version = "0.6.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNPBP library defining chain parameters"
Expand All @@ -12,9 +12,9 @@ edition = "2018"

[dependencies]
amplify = "3.9.1"
bitcoin = "0.27.1"
bitcoin_hashes = "0.10.0"
strict_encoding = "1.7.4"
bitcoin_hashes = "0.10.0" # We need macro from here
bitcoin = { version = "0.28", git = "https://github.com/LNP-BP/rust-bitcoin", branch = "taproot/all" }
strict_encoding = { version = "1.8.0", git = "https://github.com/LNP-BP/client_side_validation", branch = "develop" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", features = ["hex"], optional = true }
lazy_static = "1.4.0" # TODO: #213 Remove dependency
Expand Down
2 changes: 1 addition & 1 deletion elgamal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_elgamal"
version = "0.5.0"
version = "0.6.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNPBP-31: "
Expand Down

0 comments on commit 1c2811f

Please sign in to comment.