-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing bitcoin use-serde feature name
- Loading branch information
1 parent
74b3d74
commit 95df6a2
Showing
3 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] |