Crates.io | festival-gui |
lib.rs | festival-gui |
version | 0.0.0 |
source | src |
created_at | 2023-03-23 16:30:22.72137 |
updated_at | 2023-03-23 16:30:22.72137 |
description | Festival GUI |
homepage | https://festival.pm |
repository | https://github.com/hinto-janai/festival |
max_upload_size | |
id | 818502 |
size | 101,328 |
festival-gui
Festival
GUI (egui
) client. Directly uses festival
internals.
For a broad overview of festival-gui
's internals, see src/
.
You need cargo
.
Building in this repo currently means building festival-gui
. The produced binary is named festival
.
There are 30
unit tests, you may want to run:
cargo test
before attempting a full build.
You need cargo
.
Building in this repo currently means building festival-gui
. The produced binary is named festival
.
There are 30
unit tests, you may want to run:
cargo test
before attempting a full build.
The pre-compiled Linux binaries are built on Debian 11, you'll need these packages to build:
sudo apt install build-essential cmake libgtk-3-dev
After that, run:
cargo build --release
On macOS, if you want the binary to have an icon, you must install cargo-bundle
.
After that, run:
cargo bundle --release
This bundles Festival
into Festival.app
, the way it comes in the pre-built tars for macOS.
cargo build --release
There is a build.rs
file in the repo solely for Windows-specific things:
File Explorer
VCRUNTIME140.dll
(the binary will not be portable without this)All of Festival
is licensed under the MIT License.
All of the libraries festival-gui
(directly) uses:
Library | Purpose | License |
---|---|---|
clap | CLI arguments | MIT & Apache-2.0 |
crossbeam_channel | Thread message passing | MIT & Apache-2.0 |
egui | GUI | MIT & Apache-2.0 |
egui_extras | GUI | MIT & Apache-2.0 |
eframe | GUI | MIT & Apache-2.0 |
log | Logging | MIT & Apache-2.0 |
image | Image processing | MIT |
serde | (De)serialization | MIT & Apache-2.0 |
strum | Enum iteration | MIT |