-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
567c435
commit 4f14b5b
Showing
4 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
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
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,7 +1,7 @@ | ||
[package] | ||
name = "lnp_node" | ||
description = "LNP node" | ||
version = "0.1.0-alpha.3" | ||
version = "0.1.0-alpha.4" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rgb"] | ||
|
@@ -37,9 +37,9 @@ required-features = ["cli"] | |
# LNP/BP crates | ||
amplify = "~2.2.1" | ||
amplify_derive = "~2.2.2" | ||
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] } | ||
lnpbp_derive = { git = "git://github.com/LNP-BP/rust-lnpbp" } | ||
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" } | ||
lnpbp = { version = "~0.2.0-beta.1", features = ["lnp", "url", "websockets"] } | ||
lnpbp_derive = "=0.2.0-beta.1" | ||
lnpbp_services = "=0.2.0-beta.1" | ||
lazy_static = "~1.4.0" | ||
# Rust language | ||
nix = { version = "~0.19.0", optional = true } | ||
|
@@ -73,8 +73,8 @@ zmq = { version = "~0.9.2", optional = true } | |
[build-dependencies] | ||
amplify = "~2.2.1" | ||
amplify_derive = "~2.2.2" | ||
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] } | ||
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" } | ||
lnpbp = { version = "=0.2.0-beta.1", features = ["lnp", "url", "websockets"] } | ||
lnpbp_services = "=0.2.0-beta.1" | ||
clap = "=3.0.0-beta.2" | ||
clap_generate = "=3.0.0-beta.2" | ||
log = { version = "~0.4.8", features = ["max_level_trace", "release_max_level_debug"] } | ||
|
@@ -86,11 +86,6 @@ configure_me_codegen = "~0.3.14" | |
# Remove this once https://github.com/jean-airoldie/zeromq-src-rs/pull/15 got merged | ||
# zeromq-src = { git = "https://github.com/LNP-BP/zeromq-src-rs", branch = "fix/cmake" } | ||
|
||
# This fixing Display implementation for ParseOrSemanticError and must be | ||
# removed once the corresponding PR will be merged: | ||
# <https://github.com/rust-bitcoin/rust-lightning-invoice/pull/43> | ||
lightning-invoice = { git = "git://github.com/LNP-BP/rust-lightning-invoice", branch = "fix/error" } | ||
|
||
# Recommended set of features: | ||
# 1. Standalone node: `server` (=`node`+`shell`) | ||
# 2. Cli to remote node: `cli` (auto includes `shell` and `integration`) | ||
|
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