diff --git a/CHANGELOG.md b/CHANGELOG.md index facfc65..f9b046d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +v0.1.0-alpha.2 +-------------- + +- Skeleton for lnpd, channeld, gossipd and routed services/daemons +- Ping/pong interplay betweeen nodes +- Completed implementatino of enterprise service buses (CTL, MSG, BRIDGE) +- Basic channel creating workflow + v0.1.0-alpha.1 -------------- diff --git a/Cargo.lock b/Cargo.lock index 28d6474..194398a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -914,7 +914,8 @@ dependencies = [ [[package]] name = "lnpbp" version = "0.2.0-alpha.2" -source = "git+https://github.com/LNP-BP/rust-lnpbp#45ddc475d029dc5779ced9ea6b0194c388a96ae9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f27e8515cacf67fae7f9eaac45fdd40870b3ac96e498b4184d8dd33866eb97b" dependencies = [ "amplify 2.0.6", "amplify_derive", @@ -943,7 +944,8 @@ dependencies = [ [[package]] name = "lnpbp_derive" version = "0.2.0-alpha.2" -source = "git+https://github.com/LNP-BP/rust-lnpbp#45ddc475d029dc5779ced9ea6b0194c388a96ae9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25625a26179157cd59fd8c10f607db734277d0df027d8b636b6dce6e18907af3" dependencies = [ "amplify 2.0.6", "quote 1.0.7", @@ -953,7 +955,8 @@ dependencies = [ [[package]] name = "lnpbp_services" version = "0.2.0-alpha.2" -source = "git+https://github.com/LNP-BP/rust-lnpbp#45ddc475d029dc5779ced9ea6b0194c388a96ae9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3b991a22c2352dc7a27790bc037f5f3b35d2495df9995b8f1f0353d086aa055" dependencies = [ "amplify 2.0.6", "amplify_derive", diff --git a/Cargo.toml b/Cargo.toml index 09b0548..d39d1a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,9 +25,9 @@ required-features = ["cli"] # Rust language amplify = "~2.0.6" amplify_derive = "~2.0.6" -lnpbp = { git = "https://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] } -lnpbp_derive = { git = "https://github.com/LNP-BP/rust-lnpbp" } -lnpbp_services = { git = "https://github.com/LNP-BP/rust-lnpbp" } +lnpbp = { version = "~0.2.0-alpha.2", features = ["lnp", "url", "websockets"] } +lnpbp_derive = "~0.2.0-alpha.2" +lnpbp_services = "~0.2.0-alpha.2" lazy_static = "~1.4.0" nix = { version = "~0.19.0", optional = true } # Bitcoin @@ -58,8 +58,8 @@ zmq = { version = "~0.9.2", optional = true } [build-dependencies] amplify = "~1.2.0" amplify_derive = "~2.0.6" -lnpbp = { git = "https://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] } -lnpbp_services = { git = "https://github.com/LNP-BP/rust-lnpbp" } +lnpbp = { version = "~0.2.0-alpha.2", features = ["lnp", "url", "websockets"] } +lnpbp_services = "~0.2.0-alpha.2" clap = "=3.0.0-beta.2" clap_generate = "=3.0.0-beta.2" log = { version = "~0.4.8", features = ["max_level_trace", "release_max_level_debug"] }