Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
Update deps with LNPBP4 Merkle block bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 25, 2022
1 parent d01a710 commit 3e52ed7
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 49 deletions.
71 changes: 45 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand All @@ -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 }
Expand All @@ -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"
Expand Down
14 changes: 7 additions & 7 deletions cli/Cargo.toml
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"]
Expand All @@ -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"
Expand All @@ -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" }
Expand Down
12 changes: 6 additions & 6 deletions rpc/Cargo.toml
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"]
Expand All @@ -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"

Expand Down

0 comments on commit 3e52ed7

Please sign in to comment.