Merge #424: gui: bump to 0.4

fe52fbaa49096d1b1beffee09d56f5cc8272a585 gui: bump to 0.4 (Antoine Poinsot)

Pull request description:

  This bumps the GUI to 0.4, using the 0.4 branch from lianad.

ACKs for top commit:
  darosior:
    self-ACK fe52fbaa49096d1b1beffee09d56f5cc8272a585

Tree-SHA512: 9f3ab6e45587ebc5e9f70f67bb30265a34d712bb04e71270cafa271c00bdba54c65bca7bcd0f7af008627e9d9b6e14b1621351280e72e9d4928ce8801e14c603
This commit is contained in:
Antoine Poinsot 2023-04-10 13:36:14 +02:00
commit 46efdd3664
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
5 changed files with 7 additions and 24 deletions

View File

@ -1,17 +0,0 @@
[source.vendored_sources]
directory = "vendor"
[source.crates-io]
replace-with = "vendored_sources"
[source."https://github.com/darosior/rust-miniscript"]
git = "https://github.com/darosior/rust-miniscript"
branch = "multipath_descriptors_on_8.0"
replace-with = "vendored_sources"
[source."https://github.com/wizardsardine/liana"]
git = "https://github.com/wizardsardine/liana"
branch = "master"
replace-with = "vendored_sources"
# TODO: strip debug symbols as is done in Guix to reduce binary size.

View File

@ -20,7 +20,7 @@ replace-with = "vendored_sources"
[source."https://github.com/wizardsardine/liana"]
git = "https://github.com/wizardsardine/liana"
branch = "master"
branch = "0.4-lianad"
replace-with = "vendored_sources"
EOF

6
gui/Cargo.lock generated
View File

@ -1726,8 +1726,8 @@ dependencies = [
[[package]]
name = "liana"
version = "0.3.0"
source = "git+https://github.com/wizardsardine/liana?branch=master#76deaab9888619249a5ca75dd19d75db155ee1f3"
version = "0.4.0"
source = "git+https://github.com/wizardsardine/liana?branch=0.4-lianad#81b81b2f789052cd8ef6b13964f9953f4fcbc0a4"
dependencies = [
"backtrace",
"base64",
@ -1747,7 +1747,7 @@ dependencies = [
[[package]]
name = "liana_gui"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"async-hwi",
"backtrace",

View File

@ -1,6 +1,6 @@
[package]
name = "liana_gui"
version = "0.3.0"
version = "0.4.0"
readme = "README.md"
description = "Liana GUI"
repository = "https://github.com/wizardsardine/liana"
@ -15,7 +15,7 @@ path = "src/main.rs"
[dependencies]
async-hwi = "0.0.5"
liana = { git = "https://github.com/wizardsardine/liana", branch = "master", default-features = false }
liana = { git = "https://github.com/wizardsardine/liana", branch = "0.4-lianad", default-features = false }
liana_ui = { path = "ui" }
backtrace = "0.3"
base64 = "0.13"

View File

@ -12,6 +12,6 @@ use liana::Version;
pub const VERSION: Version = Version {
major: 0,
minor: 3,
minor: 4,
patch: 0,
};