From 0f7a89db6423532f17b0a5337327ec656f7edd15 Mon Sep 17 00:00:00 2001 From: edouardparis Date: Tue, 16 Jan 2024 15:15:33 +0100 Subject: [PATCH] gui: use async-hwi:master --- gui/Cargo.lock | 6 ++---- gui/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/gui/Cargo.lock b/gui/Cargo.lock index 8e5caf65..0d738567 100644 --- a/gui/Cargo.lock +++ b/gui/Cargo.lock @@ -207,10 +207,9 @@ dependencies = [ [[package]] name = "async-hwi" version = "0.0.13" -source = "git+https://github.com/wizardsardine/async-hwi?branch=coldcard#b146735976c867e9c53b37b77ab48977d4913f36" +source = "git+https://github.com/wizardsardine/async-hwi?branch=master#d49673778bf5e8f907686f71888db9cf92c85038" dependencies = [ "async-trait", - "base64 0.13.1", "bitbox-api", "bitcoin", "coldcard", @@ -693,8 +692,7 @@ dependencies = [ [[package]] name = "coldcard" version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78618b6a41c7f3d1797f1a83d8ccedd7a94a8e0b47b54c06702e560148298254" +source = "git+https://github.com/darosior/rust-coldcard.git?branch=2401_api_feature_msrv#d817bd970995e7994c8d468f460c31141c47f7c6" dependencies = [ "aes-ctr", "base58", diff --git a/gui/Cargo.toml b/gui/Cargo.toml index 77a2f0e1..b21bf381 100644 --- a/gui/Cargo.toml +++ b/gui/Cargo.toml @@ -14,7 +14,7 @@ name = "liana-gui" path = "src/main.rs" [dependencies] -async-hwi = { git = "https://github.com/wizardsardine/async-hwi", branch = "coldcard"} +async-hwi = { git = "https://github.com/wizardsardine/async-hwi", branch = "master"} liana = { git = "https://github.com/wizardsardine/liana", branch = "master", default-features = false, features = ["nonblocking_shutdown"] } liana_ui = { path = "ui" } backtrace = "0.3"