chore: Add description to Cargo.toml for GUI

This commit is contained in:
binarybaron 2024-08-09 15:26:26 +02:00
parent 8cb1e8aff0
commit 630f4c6f23
No known key found for this signature in database
GPG key ID: 99B75D3E1476A26E
5 changed files with 109 additions and 17 deletions

View file

@ -1,23 +1,23 @@
[package]
name = "unstoppableswap-gui-rs"
version = "0.0.0"
authors = [ "binarybaron", "einliterflasche", "unstoppableswap" ]
authors = ["binarybaron", "einliterflasche", "unstoppableswap"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "A Tauri App"
description = "GUI for XMR<>BTC Atomic Swaps written in Rust"
[lib]
name = "unstoppableswap_gui_rs_lib"
crate-type = [ "lib", "cdylib", "staticlib" ]
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2.0.0-rc.1", features = [ "config-json5" ] }
tauri-build = { version = "2.0.0-rc.1", features = ["config-json5"] }
[dependencies]
anyhow = "1"
once_cell = "1"
serde = { version = "1", features = [ "derive" ] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
swap = { path = "../swap" }
tauri = { version = "2.0.0-rc.1", features = [ "config-json5" ] }
tauri = { version = "2.0.0-rc.1", features = ["config-json5"] }

View file

@ -77,6 +77,7 @@ fn setup<'a>(app: &'a mut tauri::App) -> Result<(), Box<dyn std::error::Error>>
.set(Arc::new(context))
.expect("Failed to initialize cli context");
});
Ok(())
}