-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (28 loc) · 945 Bytes
/
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
[package]
name = "bign-handheld-thumbnailer"
version = "1.1.0"
authors = ["Mateus Rodrigues Costa <[email protected]>"]
edition = "2021"
description = "A thumbnailer for Nintendo handheld systems (Nintendo DS and 3DS) roms and files"
readme = "README.md"
repository = "https://github.com/MateusRodCosta/bign-handheld-thumbnailer"
license = "GPL-2.0-or-later"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# This thumbnailer will at the very least be packaged as a RPM for Fedora
# Therefore the dependencies it uses must be compatible with what is available
# on Fedora repos for the currently supported Fedora releases
[dependencies]
pico-args = "0.5.0"
gio = "0.20.1"
thiserror = "1.0.63"
[dependencies.image]
version = "0.25.2"
default-features = false
features = ["png"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"