-
-
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
e973d3f
commit 16255d7
Showing
7 changed files
with
41 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
Change Log | ||
========== | ||
|
||
v0.1.0-alpha.1 | ||
-------------- | ||
|
||
Initial pre-release: | ||
- Multithreaded concurrent architecture | ||
- Connection daemon | ||
- Command-line tool | ||
- LN peer connectivity | ||
- ZMQ RPC command buses: for LN messages and control | ||
|
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.2" | ||
version = "0.1.0-alpha.1" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rgb"] | ||
|
@@ -21,6 +21,9 @@ required-features = ["cli"] | |
# Rust language | ||
amplify = "~2.0.6" | ||
amplify_derive = "~2.0.6" | ||
lnpbp = { version = "~0.2.0-alpha.1", features = ["lnp", "url", "websockets"] } | ||
lnpbp_derive = "~0.2.0-alpha.1" | ||
lnpbp_services = "~0.2.0-alpha.1" | ||
lazy_static = "~1.4.0" | ||
nix = { version = "~0.19.0", optional = true } | ||
# Bitcoin | ||
|
@@ -47,23 +50,10 @@ async-trait = { version = "~0.1.35", optional = true } | |
tokio = { version = "~0.2.21", features = ["full"], optional = true } | ||
zmq = { version = "~0.9.2", optional = true } | ||
|
||
[dependencies.lnpbp] | ||
git = "https://github.com/LNP-BP/rust-lnpbp" | ||
branch = "master" | ||
features = ["lnp", "keygen", "tokio", "serde", "url", "websockets"] | ||
|
||
[dependencies.lnpbp_derive] | ||
git = "https://github.com/LNP-BP/rust-lnpbp" | ||
branch = "master" | ||
|
||
[dependencies.lnpbp_services] | ||
git = "https://github.com/LNP-BP/rust-lnpbp" | ||
branch = "master" | ||
|
||
[build-dependencies] | ||
amplify = "~1.2.0" | ||
lnpbp = { git = "https://github.com/LNP-BP/rust-lnpbp", branch = "master", features = ["lnp", "keygen", "tokio", "serde", "tor", "url", "websockets"] } | ||
lnpbp_services = { git = "https://github.com/LNP-BP/rust-lnpbp", branch = "master", features = ["shell"] } | ||
lnpbp = { version = "~0.2.0-alpha.1", features = ["lnp", "url", "websockets"] } | ||
lnpbp_services = "~0.2.0-alpha.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"] } | ||
|
@@ -100,7 +90,7 @@ shell = [ | |
# Besides server node can be run as a part of mobile app | ||
# and other types of clients; thus `server` != `node`. | ||
# This feature results in building with features not required for CLI | ||
node = ["serde", "lnpbp/keygen", "tokio", "zmq", "lnpbp_services/node"] | ||
node = ["serde", "lnpbp/keygen", "tokio", "lnpbp/tokio", "zmq", "lnpbp_services/node"] | ||
serde = ["serde_crate", "serde_with", "toml", "amplify/serde", "lnpbp/serde", | ||
"lnpbp_services/serde"] | ||
|
||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
|
||
#[cfg(feature = "shell")] | ||
mod opts; | ||
mod peer; | ||
mod runtime; | ||
|
||
#[cfg(feature = "shell")] | ||
|
This file was deleted.
Oops, something went wrong.