-
-
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
9e52aeb
commit 8f5af01
Showing
4 changed files
with
46 additions
and
58 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ members = [".", "rpc", "cli"] | |
[package] | ||
name = "lnp_node" | ||
description = "LNP node" | ||
version = "0.7.0-beta.1" | ||
version = "0.7.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "bifi", "lightning-network", "smart-contracts", "lnp"] | ||
|
@@ -47,10 +47,10 @@ amplify = "3.12.0" | |
strict_encoding = { version = "1.8.1", features = ["miniscript"] } | ||
descriptor-wallet = { version = "0.7.1", features = ["keygen", "miniscript", "electrum"] } | ||
lnpbp = "0.7.0" | ||
lnp-core = "0.7.0-beta.1" | ||
lnp_rpc = { version = "0.7.0-beta.1", path = "./rpc" } | ||
internet2 = { version = "0.7.0-rc.1", features = ["keygen", "url"] } | ||
microservices = { version = "0.7.0-rc.3", default-features = false, features = ["node", "peer"] } | ||
lnp-core = "0.7.0" | ||
lnp_rpc = { version = "0.7.0", path = "./rpc" } | ||
internet2 = { version = "0.7.0", features = ["keygen", "url"] } | ||
microservices = { version = "0.7.0", default-features = false, features = ["node", "peer"] } | ||
# Bitcoin | ||
bitcoin = { version = "0.28.1", features = ["rand"] } | ||
miniscript = "7.0.0" | ||
|
@@ -61,7 +61,7 @@ chrono = "0.4" | |
nix = "0.19" | ||
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] } | ||
env_logger = "0.7" | ||
clap = { version = "3.1", optional = true, features = ["env", "derive"] } | ||
clap = { version = "~3.1.18", optional = true, features = ["env", "derive"] } | ||
settings = { version = "0.10", package = "config", optional = true } | ||
configure_me = { version = "0.4", optional = true } | ||
dotenv = { version = "0.15", optional = true } | ||
|
@@ -80,11 +80,11 @@ lnpbp = "0.7.0" | |
bitcoin = "0.28.1" | ||
lightning-invoice = "0.14.0" | ||
lnp-core = "0.7.0-beta.1" | ||
lnp_rpc = { version = "0.7.0-beta.1", path = "./rpc" } | ||
internet2 = "0.7.0-rc.1" | ||
microservices = { version = "0.7.0-rc.3", default-features = false, features = ["peer"] } | ||
clap = { version = "3.1", features = ["env"] } | ||
clap_complete = "3.1" | ||
lnp_rpc = { version = "0.7.0", path = "./rpc" } | ||
internet2 = "0.7.0" | ||
microservices = { version = "0.7.0", default-features = false, features = ["peer"] } | ||
clap = { version = "~3.1.18", features = ["env"] } | ||
clap_complete = "~3.1.4" | ||
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] } | ||
shellexpand = "2" | ||
configure_me_codegen = "0.4" | ||
|
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-cli" | ||
description = "LNP node command-line interface" | ||
version = "0.7.0-beta.1" | ||
version = "0.7.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "lnp"] | ||
|
@@ -15,12 +15,12 @@ name = "lnp-cli" | |
|
||
[dependencies] | ||
amplify = "3.12.0" | ||
lnp-core = { version = "0.7.0-beta.1", default-features = false } | ||
lnp_rpc = { version = "0.7.0-beta.1", path = "../rpc" } | ||
lnp-core = { version = "0.7.0", default-features = false } | ||
lnp_rpc = { version = "0.7.0", path = "../rpc" } | ||
lightning-invoice = { version = "0.14.0", optional = true } | ||
internet2 = "0.7.0-rc.1" | ||
microservices = { version = "0.7.0-rc.1", default-features = false, features = ["cli"] } | ||
clap = { version = "3.1", features = ["derive", "env"] } | ||
internet2 = "0.7.0" | ||
microservices = { version = "0.7.0", default-features = false, features = ["cli"] } | ||
clap = { version = "~3.1.18", features = ["derive", "env"] } | ||
log = "0.4.14" | ||
|
||
[features] | ||
|
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_rpc" | ||
description = "LNP node RPC API" | ||
version = "0.7.0-beta.1" | ||
version = "0.7.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rpc"] | ||
|
@@ -14,12 +14,12 @@ name = "lnp_rpc" | |
[dependencies] | ||
amplify = "3.12.0" | ||
strict_encoding = "1.8.1" | ||
lnp-core = { version = "0.7.0-beta.1", default-features = false } | ||
lnp-core = { version = "0.7.0", default-features = false } | ||
lnpbp = "0.7.0" | ||
bitcoin = { version = "0.28.1", features = ["rand"] } | ||
lightning-invoice = { version = "0.14.0", optional = true } | ||
internet2 = "0.7.0-rc.1" | ||
microservices = { version = "0.7.0-rc.2", default-features = false, features = ["client"] } | ||
internet2 = "0.7.0" | ||
microservices = { version = "0.7.0", default-features = false, features = ["client"] } | ||
descriptor-wallet = "0.7.1" | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
serde_with = { version = "1.8", optional = true } | ||
|