Skip to content

Commit

Permalink
Fixing bitcoin use-serde feature name
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Aug 27, 2021
1 parent 74b3d74 commit 95df6a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lnpbp"
version = "0.5.0-beta.2"
version = "0.5.0-beta.3"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "LNP/BP Core Library implementing LNPBP specifications & standards"
Expand All @@ -25,7 +25,7 @@ required-features = ["cli"]
[dependencies]
amplify = { version = "3", features = ["stringly_conversions", "std"] }
lnpbp_bech32 = { version = "0.5.0-beta.2", path = "bech32" }
lnpbp_chain = { version = "0.5.0-beta.2", path = "chain" }
lnpbp_chain = { version = "0.5.0-beta.3", path = "chain" }
lnpbp_elgamal = { version = "0.5.0-beta.1", path = "elgamal", optional = true }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
serde_with = { version = "1.8", features = ["hex"], optional = true }
Expand Down
4 changes: 2 additions & 2 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-beta.2"
version = "0.5.0-beta.3"
license = "MIT"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "LNPBP library defining chain parameters"
Expand All @@ -20,4 +20,4 @@ serde_with = { version = "1.8", features = ["hex"], optional = true }
lazy_static = "1.4.0" # Remove dependency

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

0 comments on commit 95df6a2

Please sign in to comment.