Skip to content

Commit

Permalink
Modernizing for LNP/BP Core v0.2 release & RGB Node v0.2 RC
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 16, 2020
1 parent db510c8 commit 318f784
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 40 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change Log
==========

v0.1.0-beta.2
-------------
- Fix balances consistency in channeld
- README & build instructions improvements
- Modernizing for LNP/BP Core v0.2 release & RGB Node v0.2 RC

v0.1.0-beta.1
--------------

Expand Down
107 changes: 87 additions & 20 deletions Cargo.lock

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

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lnp_node"
description = "LNP node"
version = "0.1.0-beta.1"
version = "0.1.0-beta.2"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
license = "MIT"
keywords = ["bitcoin", "node", "lightning-network", "smart-contracts", "rgb"]
Expand Down Expand Up @@ -39,28 +39,28 @@ required-features = ["cli"]

[dependencies]
# LNP/BP crates
amplify = "~2.3.1"
amplify_derive = "~2.3.1"
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "websockets"] }
lnpbp_derive = "=0.2.0-beta.2"
lnpbp_services = "=0.2.0-beta.2"
rgb_node = { version = "~0.2.0-beta.2", features = ["client", "fungibles"] }
amplify = "2.4"
amplify_derive = "2.4.2"
lnpbp = { version = "~0.2.2", features = ["lnp", "websockets"] }
lnpbp_derive = "~0.2.0"
lnpbp_services = "~0.2.0"
rgb_node = { version = "~0.2.0-rc.5", features = ["client", "fungibles"] }
# Rust language
lazy_static = "~1.4.0"
nix = { version = "~0.19.0", optional = true }
chrono = "~0.4.19"
# Bitcoin
electrum-client = { version = "=0.3.0-beta.1", optional = true }
# Serialization & parsing
serde_crate = { package = "serde", version = "~1.0.106", features = ["derive"], optional = true }
serde_with = { version = "~1.5.1", optional = true, features = ["hex"] }
serde_json = { version = "~1.0.55", optional = true }
serde_yaml = { version = "~0.8.13", optional = true }
toml = { version = "~0.5.6", optional = true }
bech32 = { version = "~0.7.2", optional = true }
base64 = { version = "~0.12.1", optional = true }
regex = { version = "~1.3.9", optional = true }
url = { version = "~2.1.1", optional = true }
serde_crate = { package = "serde", version = "1.0", features = ["derive"], optional = true }
serde_with = { version = "1.5", optional = true, features = ["hex"] }
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.8.13", optional = true }
toml = { version = "0.5.6", optional = true }
bech32 = { version = "0.7.2", optional = true }
base64 = { version = "0.12.1", optional = true }
regex = { version = "1.3", optional = true }
url = { version = "2.1", optional = true }
# Congig & logging
settings = { version = "~0.10.1", package = "config", optional = true }
configure_me = { version = "0.3.4", optional = true }
Expand All @@ -76,10 +76,10 @@ tokio = { version = "~0.2.21", features = ["full"], optional = true }
zmq = { version = "~0.9.2", optional = true }

[build-dependencies]
amplify = "~2.3.1"
amplify_derive = "~2.3.0"
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "url", "websockets"] }
lnpbp_services = "=0.2.0-beta.2"
amplify = "2.4"
amplify_derive = "2.4.2"
lnpbp = { version = "~0.2.2", features = ["lnp", "url", "websockets"] }
lnpbp_services = "~0.2.0"
lazy_static = "~1.4.0"
clap = "=3.0.0-beta.2"
clap_generate = "=3.0.0-beta.2"
Expand Down

0 comments on commit 318f784

Please sign in to comment.