This repository has been archived by the owner on Dec 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deps with LNPBP4 Merkle block bug fix
- Loading branch information
1 parent
d01a710
commit 3e52ed7
Showing
4 changed files
with
68 additions
and
49 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 = "rgb_node" | ||
description = "RGB node" | ||
version = "0.8.3" | ||
version = "0.8.4" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"] | ||
|
@@ -32,15 +32,15 @@ required-features = ["server"] | |
amplify = "3.13.0" | ||
strict_encoding = "~0.8.2" | ||
stens = "0.7.1" | ||
commit_verify = "0.8.2" | ||
commit_verify = "~0.8.3" | ||
internet2 = { version = "0.8.3", features = ["keygen", "zmq"] } | ||
microservices = { version = "0.8.10", default-features = false, features = ["node"] } | ||
lnpbp = "0.8.0" | ||
bp-core = { version = "0.8.1", features = ["psbt"] } | ||
lnp-core = { version = "0.8.1", features = ["bifrost"] } | ||
lnp-core = { version = "0.8.2", features = ["bifrost"] } | ||
lnp_rpc = "0.8.0" | ||
rgb-std = "0.8.1" | ||
rgb_rpc = { version = "0.8.3", path = "./rpc" } | ||
rgb-std = "0.8.2" | ||
rgb_rpc = { version = "0.8.4", path = "./rpc" } | ||
storm-core = "0.8.0" | ||
storm_ext = "0.8.0" | ||
storm_rpc = "0.8.0" | ||
|
@@ -53,7 +53,7 @@ chrono = "0.4" | |
nix = "0.24" | ||
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] } | ||
env_logger = "0.7" | ||
clap = { version = "~3.1.18", optional = true, features = ["env", "derive"] } | ||
clap = { version = "~3.2.23", 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 } | ||
|
@@ -66,12 +66,12 @@ internet2 = "0.8.0" | |
microservices = { version = "0.8.0", default-features = false } | ||
lnpbp = "0.8.0" | ||
psbt = "0.8.0" | ||
rgb-std = "0.8.1" | ||
rgb_rpc = { version = "0.8.2", path = "./rpc" } | ||
rgb-std = "0.8.2" | ||
rgb_rpc = { version = "0.8.4", path = "./rpc" } | ||
storm_ext = "0.8.0" | ||
store_rpc = "0.8.0" | ||
clap = { version = "~3.1.18", features = ["env"] } | ||
clap_complete = "~3.1.4" | ||
clap = { version = "~3.2.23", features = ["env"] } | ||
clap_complete = "~3.2.5" | ||
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] } | ||
shellexpand = "2.1" | ||
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 = "rgb-cli" | ||
description = "RGB node command-line interface" | ||
version = "0.8.3" | ||
version = "0.8.4" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"] | ||
|
@@ -23,12 +23,12 @@ microservices = { version = "0.8.10", default-features = false, features = ["cli | |
bitcoin = "0.28.1" | ||
psbt = "0.8.0" | ||
lnpbp = "0.8.0" | ||
rgb-std = { version = "0.8.1", features = ["serde"] } | ||
rgb_rpc = { version = "0.8.3", path = "../rpc" } | ||
clap = { version = "~3.1.18", features = ["derive", "env"] } | ||
rgb-std = { version = "0.8.2", features = ["serde"] } | ||
rgb_rpc = { version = "0.8.4", path = "../rpc" } | ||
clap = { version = "~3.2.23", features = ["derive", "env"] } | ||
serde = "1" | ||
serde_json = "1" | ||
serde_yaml = "0.8" | ||
serde_yaml = "0.9" | ||
log = "0.4.14" | ||
shellexpand = "2.1" | ||
colored = "2" | ||
|
@@ -38,8 +38,8 @@ amplify = "3.12.1" | |
strict_encoding = "~0.8.2" | ||
bitcoin = "0.28.1" | ||
lnpbp = "0.8.0" | ||
clap = { version = "~3.1.18", features = ["derive", "env"] } | ||
clap_complete = "~3.1.4" | ||
clap = { version = "~3.2.23", features = ["derive", "env"] } | ||
clap_complete = "~3.2.5" | ||
internet2 = "0.8.0" | ||
rgb-std = "0.8.1" | ||
rgb_rpc = { version = "0.8.2", path = "../rpc" } | ||
|
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 = "rgb_rpc" | ||
description = "RGB node RPC API" | ||
version = "0.8.3" | ||
version = "0.8.4" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
license = "MIT" | ||
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"] | ||
|
@@ -16,17 +16,17 @@ name = "rgb_rpc" | |
[dependencies] | ||
amplify = "3.13.0" | ||
strict_encoding = "~0.8.2" | ||
rgb-std = "0.8.1" | ||
rgb-std = "0.8.2" | ||
storm-core = "0.8.0" | ||
lnpbp = "0.8.0" | ||
bitcoin = "0.28.1" | ||
psbt = "0.8.4" | ||
internet2 = "0.8.3" | ||
bp-core = { version = "0.8.0", features = ["psbt"] } | ||
psbt = "0.8.5" | ||
internet2 = "0.8.4" | ||
bp-core = { version = "0.8.1", features = ["psbt"] } | ||
microservices = { version = "0.8.10", default-features = false, features = ["client"] } | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
serde_with = { version = "1.8", optional = true } | ||
serde_yaml = { version = "0.8.23", optional = true } | ||
serde_yaml = { version = "0.9.16", optional = true } | ||
log = "0.4.14" | ||
colored = "2" | ||
|
||
|