Skip to content

Commit 318f784

Browse files
committed
Modernizing for LNP/BP Core v0.2 release & RGB Node v0.2 RC
1 parent db510c8 commit 318f784

File tree

3 files changed

+113
-40
lines changed

3 files changed

+113
-40
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==========
33

4+
v0.1.0-beta.2
5+
-------------
6+
- Fix balances consistency in channeld
7+
- README & build instructions improvements
8+
- Modernizing for LNP/BP Core v0.2 release & RGB Node v0.2 RC
9+
410
v0.1.0-beta.1
511
--------------
612

Cargo.lock

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

Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lnp_node"
33
description = "LNP node"
4-
version = "0.1.0-beta.1"
4+
version = "0.1.0-beta.2"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rgb"]
@@ -39,28 +39,28 @@ required-features = ["cli"]
3939

4040
[dependencies]
4141
# LNP/BP crates
42-
amplify = "~2.3.1"
43-
amplify_derive = "~2.3.1"
44-
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "websockets"] }
45-
lnpbp_derive = "=0.2.0-beta.2"
46-
lnpbp_services = "=0.2.0-beta.2"
47-
rgb_node = { version = "~0.2.0-beta.2", features = ["client", "fungibles"] }
42+
amplify = "2.4"
43+
amplify_derive = "2.4.2"
44+
lnpbp = { version = "~0.2.2", features = ["lnp", "websockets"] }
45+
lnpbp_derive = "~0.2.0"
46+
lnpbp_services = "~0.2.0"
47+
rgb_node = { version = "~0.2.0-rc.5", features = ["client", "fungibles"] }
4848
# Rust language
4949
lazy_static = "~1.4.0"
5050
nix = { version = "~0.19.0", optional = true }
5151
chrono = "~0.4.19"
5252
# Bitcoin
5353
electrum-client = { version = "=0.3.0-beta.1", optional = true }
5454
# Serialization & parsing
55-
serde_crate = { package = "serde", version = "~1.0.106", features = ["derive"], optional = true }
56-
serde_with = { version = "~1.5.1", optional = true, features = ["hex"] }
57-
serde_json = { version = "~1.0.55", optional = true }
58-
serde_yaml = { version = "~0.8.13", optional = true }
59-
toml = { version = "~0.5.6", optional = true }
60-
bech32 = { version = "~0.7.2", optional = true }
61-
base64 = { version = "~0.12.1", optional = true }
62-
regex = { version = "~1.3.9", optional = true }
63-
url = { version = "~2.1.1", optional = true }
55+
serde_crate = { package = "serde", version = "1.0", features = ["derive"], optional = true }
56+
serde_with = { version = "1.5", optional = true, features = ["hex"] }
57+
serde_json = { version = "1.0", optional = true }
58+
serde_yaml = { version = "0.8.13", optional = true }
59+
toml = { version = "0.5.6", optional = true }
60+
bech32 = { version = "0.7.2", optional = true }
61+
base64 = { version = "0.12.1", optional = true }
62+
regex = { version = "1.3", optional = true }
63+
url = { version = "2.1", optional = true }
6464
# Congig & logging
6565
settings = { version = "~0.10.1", package = "config", optional = true }
6666
configure_me = { version = "0.3.4", optional = true }
@@ -76,10 +76,10 @@ tokio = { version = "~0.2.21", features = ["full"], optional = true }
7676
zmq = { version = "~0.9.2", optional = true }
7777

7878
[build-dependencies]
79-
amplify = "~2.3.1"
80-
amplify_derive = "~2.3.0"
81-
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "url", "websockets"] }
82-
lnpbp_services = "=0.2.0-beta.2"
79+
amplify = "2.4"
80+
amplify_derive = "2.4.2"
81+
lnpbp = { version = "~0.2.2", features = ["lnp", "url", "websockets"] }
82+
lnpbp_services = "~0.2.0"
8383
lazy_static = "~1.4.0"
8484
clap = "=3.0.0-beta.2"
8585
clap_generate = "=3.0.0-beta.2"

0 commit comments

Comments
 (0)