mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2025-03-25 02:59:00 +03:00
- added `add_action` function to add actions to widgets - added `MainApp::toast_error` method to show toast with some error - added `lib::game` mod with `run` function to run the game - added `lib::consts` mod with constant values like config file path - added `lib::config` mod to control config file - added warning subtitle to `Proton-GE` wine version selector
19 lines
410 B
TOML
19 lines
410 B
TOML
[package]
|
|
name = "anime-game-launcher"
|
|
version = "0.1.0"
|
|
description = "Anime Game launcher"
|
|
authors = ["Nikita Podvirnyy <suimin.tu.mu.ga.mi@gmail.com>"]
|
|
license = "GPL-3.0"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
gtk4 = "0.4"
|
|
libadwaita = "0.1"
|
|
|
|
anime-game-core = { path = "anime-game-core", features = ["all"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5.9"
|
|
|
|
dirs = "4.0.0"
|