-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (38 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "tiny-wii-backup-manager"
version = "0.3.11"
authors = ["Manuel Quarneti <mq1@ik.me>"]
edition = "2021"
license = "GPL-2.0-only"
repository = "https://github.com/mq1/TinyWiiBackupManager"
description = "A simple Wii Backup Manager"
[package.metadata.bundle]
name = "TinyWiiBackupManager"
identifier = "eu.mq1.TinyWiiBackupManager"
icon = ["logo@2x.png"]
copyright = "Copyright (c) 2024 Manuel Quarneti"
category = "public.app-category.games"
[dependencies]
eframe = "0.29"
egui_extras = { version = "0.29", features = ["http", "image"] }
image = { version = "0.25", features = ["png"] }
poll-promise = "0.3"
wbfs = { git = "https://github.com/mq1/wbfs-rs" }
rfd = "0.15"
anyhow = "1.0"
sysinfo = "0.32"
ureq = { version = "2.10", features = ["json"] }
once_cell = "1.20"
regex = "1.11"
fs_extra = "1.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
open = "5.3"
[build-dependencies]
winres = "0.1"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"