Skip to content

Commit

Permalink
v0.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 6, 2020
1 parent e9b30a4 commit 160b4b1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Change Log
==========

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

- Channel funding
- Channel operations, HTLCs
- RGB node integration
- Adding assets to the channel (funding with assets)
- Transfers of RGB assets

v0.1.0-alpha.4
--------------

Expand Down
12 changes: 8 additions & 4 deletions Cargo.lock

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

19 changes: 7 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ required-features = ["cli"]
# LNP/BP crates
amplify = "~2.3.1"
amplify_derive = "~2.3.0"
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
lnpbp_derive = { git = "git://github.com/LNP-BP/rust-lnpbp" }
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" }
rgb_node = { git = "git://github.com/LNP-BP/rgb-node", features = ["client", "fungibles"] }
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "url", "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"] }
# Rust language
lazy_static = "~1.4.0"
nix = { version = "~0.19.0", optional = true }
Expand Down Expand Up @@ -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.0"
amplify = "~2.3.1"
amplify_derive = "~2.3.0"
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" }
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "url", "websockets"] }
lnpbp_services = "=0.2.0-beta.2"
lazy_static = "~1.4.0"
clap = "=3.0.0-beta.2"
clap_generate = "=3.0.0-beta.2"
Expand All @@ -90,11 +90,6 @@ configure_me_codegen = "~0.3.14"
[target.'cfg(target_os="android")'.dependencies]
zmq = { version = "~0.9", features = ["vendored"] }

[target.'cfg(target_os="android")'.patch.crates-io]
# Use this for Android builds
# Remove this once https://github.com/jean-airoldie/zeromq-src-rs/pull/15 got merged
zeromq-src = { git = "https://github.com/LNP-BP/zeromq-src-rs", branch = "fix/cmake" }

# Recommended set of features:
# 1. Standalone node: `server` (=`node`+`shell`)
# 2. Cli to remote node: `cli` (auto includes `shell` and `integration`)
Expand Down

0 comments on commit 160b4b1

Please sign in to comment.