Skip to content

Commit

Permalink
Release v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed May 5, 2022
1 parent dfc940f commit 3dd4ae6
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 62 deletions.
84 changes: 33 additions & 51 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp"
version = "0.6.0-rc.1"
version = "0.6.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNP/BP Core Library implementing LNPBP specifications & standards"
Expand All @@ -24,13 +24,13 @@ required-features = ["cli"]

[dependencies]
amplify = { version = "3.12.0", features = ["stringly_conversions", "std"] }
lnpbp_bech32 = { version = "0.6.0-rc.1", path = "bech32" }
lnpbp_chain = { version = "0.6.0-rc.1", path = "chain" }
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
clap = { version = "3.1.6", features = ["derive"], optional = true }
clap = { version = "3.1", features = ["derive"], optional = true }
serde_yaml = { version = "0.8", optional = true }
serde_json = { version = "1", optional = true }
base64-compat = { version = "1", optional = true } # Used by cli only
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.6.0-rc.1"
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.12.0"
bitcoin_hashes = "0.10.0"
strict_encoding = "1.8.0-rc.1"
strict_encoding = "1.8.0"
bech32 = "0.8.1"
deflate = { version = "1.0.0", optional = true }
inflate = { version = "0.4.5", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp_chain"
version = "0.6.0-rc.1"
version = "0.6.0"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
description = "LNPBP library defining chain parameters"
Expand All @@ -13,15 +13,15 @@ edition = "2018"
[dependencies]
amplify = "3.12.0"
bitcoin_hashes = "0.10.0" # We need macro from here
bitcoin = "0.28.0-rc.1"
strict_encoding = "1.8.0-rc.1"
lightning_encoding = { version = "0.6.0-rc.1" }
bitcoin = "0.28.0"
strict_encoding = "1.8.0"
lightning_encoding = { version = "0.6.0" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", features = ["hex"], optional = true }
once_cell = "1.10.0"

[dev-dependencies]
strict_encoding_test = "1.8.0-rc.1"
strict_encoding_test = "1.8.0"

[features]
serde = ["serde_crate", "serde_with", "bitcoin_hashes/serde", "bitcoin/use-serde"]

0 comments on commit 3dd4ae6

Please sign in to comment.