From 37d1f07c2d9b01e96739b8b7519fa9c8c5e78a11 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Tue, 22 Oct 2024 13:22:46 +0200 Subject: [PATCH] release(gui): 1.0.0 alpha.1 (#125) --- .vscode/settings.json | 2 ++ Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/src/lib.rs | 1 - 4 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..7a73a41b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,2 @@ +{ +} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 275edc46..46752343 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9256,7 +9256,7 @@ dependencies = [ [[package]] name = "unstoppableswap-gui-rs" -version = "0.0.0" +version = "1.0.0-alpha.1" dependencies = [ "anyhow", "once_cell", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index eb4003ee..d1ed7861 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unstoppableswap-gui-rs" -version = "0.0.0" +version = "1.0.0-alpha.1" authors = [ "binarybaron", "einliterflasche", "unstoppableswap" ] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 6d822cc5..da680e64 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -14,7 +14,6 @@ use swap::cli::{ command::{Bitcoin, Monero}, }; use tauri::{async_runtime::RwLock, Manager, RunEvent}; -use tauri_plugin_dialog; /// Trait to convert Result to Result /// Tauri commands require the error type to be a string