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

Commit 3e52ed7

Browse files
committed
Update deps with LNPBP4 Merkle block bug fix
1 parent d01a710 commit 3e52ed7

File tree

4 files changed

+68
-49
lines changed

4 files changed

+68
-49
lines changed

Cargo.lock

+45-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [".", "rpc", "cli"]
55
[package]
66
name = "rgb_node"
77
description = "RGB node"
8-
version = "0.8.3"
8+
version = "0.8.4"
99
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
1010
license = "MIT"
1111
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -32,15 +32,15 @@ required-features = ["server"]
3232
amplify = "3.13.0"
3333
strict_encoding = "~0.8.2"
3434
stens = "0.7.1"
35-
commit_verify = "0.8.2"
35+
commit_verify = "~0.8.3"
3636
internet2 = { version = "0.8.3", features = ["keygen", "zmq"] }
3737
microservices = { version = "0.8.10", default-features = false, features = ["node"] }
3838
lnpbp = "0.8.0"
3939
bp-core = { version = "0.8.1", features = ["psbt"] }
40-
lnp-core = { version = "0.8.1", features = ["bifrost"] }
40+
lnp-core = { version = "0.8.2", features = ["bifrost"] }
4141
lnp_rpc = "0.8.0"
42-
rgb-std = "0.8.1"
43-
rgb_rpc = { version = "0.8.3", path = "./rpc" }
42+
rgb-std = "0.8.2"
43+
rgb_rpc = { version = "0.8.4", path = "./rpc" }
4444
storm-core = "0.8.0"
4545
storm_ext = "0.8.0"
4646
storm_rpc = "0.8.0"
@@ -53,7 +53,7 @@ chrono = "0.4"
5353
nix = "0.24"
5454
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
5555
env_logger = "0.7"
56-
clap = { version = "~3.1.18", optional = true, features = ["env", "derive"] }
56+
clap = { version = "~3.2.23", optional = true, features = ["env", "derive"] }
5757
settings = { version = "0.10", package = "config", optional = true }
5858
configure_me = { version = "0.4", optional = true }
5959
dotenv = { version = "0.15", optional = true }
@@ -66,12 +66,12 @@ internet2 = "0.8.0"
6666
microservices = { version = "0.8.0", default-features = false }
6767
lnpbp = "0.8.0"
6868
psbt = "0.8.0"
69-
rgb-std = "0.8.1"
70-
rgb_rpc = { version = "0.8.2", path = "./rpc" }
69+
rgb-std = "0.8.2"
70+
rgb_rpc = { version = "0.8.4", path = "./rpc" }
7171
storm_ext = "0.8.0"
7272
store_rpc = "0.8.0"
73-
clap = { version = "~3.1.18", features = ["env"] }
74-
clap_complete = "~3.1.4"
73+
clap = { version = "~3.2.23", features = ["env"] }
74+
clap_complete = "~3.2.5"
7575
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
7676
shellexpand = "2.1"
7777
configure_me_codegen = "0.4"

cli/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rgb-cli"
33
description = "RGB node command-line interface"
4-
version = "0.8.3"
4+
version = "0.8.4"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -23,12 +23,12 @@ microservices = { version = "0.8.10", default-features = false, features = ["cli
2323
bitcoin = "0.28.1"
2424
psbt = "0.8.0"
2525
lnpbp = "0.8.0"
26-
rgb-std = { version = "0.8.1", features = ["serde"] }
27-
rgb_rpc = { version = "0.8.3", path = "../rpc" }
28-
clap = { version = "~3.1.18", features = ["derive", "env"] }
26+
rgb-std = { version = "0.8.2", features = ["serde"] }
27+
rgb_rpc = { version = "0.8.4", path = "../rpc" }
28+
clap = { version = "~3.2.23", features = ["derive", "env"] }
2929
serde = "1"
3030
serde_json = "1"
31-
serde_yaml = "0.8"
31+
serde_yaml = "0.9"
3232
log = "0.4.14"
3333
shellexpand = "2.1"
3434
colored = "2"
@@ -38,8 +38,8 @@ amplify = "3.12.1"
3838
strict_encoding = "~0.8.2"
3939
bitcoin = "0.28.1"
4040
lnpbp = "0.8.0"
41-
clap = { version = "~3.1.18", features = ["derive", "env"] }
42-
clap_complete = "~3.1.4"
41+
clap = { version = "~3.2.23", features = ["derive", "env"] }
42+
clap_complete = "~3.2.5"
4343
internet2 = "0.8.0"
4444
rgb-std = "0.8.1"
4545
rgb_rpc = { version = "0.8.2", path = "../rpc" }

rpc/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rgb_rpc"
33
description = "RGB node RPC API"
4-
version = "0.8.3"
4+
version = "0.8.4"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -16,17 +16,17 @@ name = "rgb_rpc"
1616
[dependencies]
1717
amplify = "3.13.0"
1818
strict_encoding = "~0.8.2"
19-
rgb-std = "0.8.1"
19+
rgb-std = "0.8.2"
2020
storm-core = "0.8.0"
2121
lnpbp = "0.8.0"
2222
bitcoin = "0.28.1"
23-
psbt = "0.8.4"
24-
internet2 = "0.8.3"
25-
bp-core = { version = "0.8.0", features = ["psbt"] }
23+
psbt = "0.8.5"
24+
internet2 = "0.8.4"
25+
bp-core = { version = "0.8.1", features = ["psbt"] }
2626
microservices = { version = "0.8.10", default-features = false, features = ["client"] }
2727
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }
2828
serde_with = { version = "1.8", optional = true }
29-
serde_yaml = { version = "0.8.23", optional = true }
29+
serde_yaml = { version = "0.9.16", optional = true }
3030
log = "0.4.14"
3131
colored = "2"
3232

0 commit comments

Comments
 (0)