Installation
To install the app you can either download ready-to-use binaries or build it from source. Unless you know what you're doing, you probably want to use the precompiled binaries.
Precompiled binaries
Precompiled binaries of the GUI are available for most platforms. Simply download the appropriate binary for your system and follow the instructions.
- Download the latest release from GitHub here (opens in a new tab)
- Open the downloaded
.exe
installer - Follow the installation instructions
- Open the
UnstoppableSwap
application from your Start menu
Building from source
If you want to build the application from source you'll need to have the following tools installed:
cargo
(installation (opens in a new tab)) andcargo tauri
(installation (opens in a new tab) and prerequisites (opens in a new tab))node
(installation (opens in a new tab)) andyarn
(version 1.22, not 4.x)dprint
(cargo install [email protected]
)typeshare
(cargo install typeshare-cli
)
After that you only need to clone the repository and run the following commands:
git clone https://github.com/UnstoppableSwap/core.git
cd core/src-tauri
cargo tauri build # may take a while
This will create the core/target/release/bundle
folder which contains the executable in a platform specific folder.
By default this will compile the binary the platform you are currently on.
You can configure this using options for the cargo tauri build
command (docs (opens in a new tab)).