mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-15 08:38:58 -05:00
chore: Add description to Cargo.toml for GUI
This commit is contained in:
parent
8cb1e8aff0
commit
630f4c6f23
5 changed files with 109 additions and 17 deletions
|
|
@ -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"] }
|
||||
|
|
|
|||
|
|
@ -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(())
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue