-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 830 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
33
34
35
36
37
38
[package]
name = "saori-resized-png-mini"
version = "1.1.1"
edition = "2021"
authors = [ "tukinami seika" ]
license = "MIT"
readme = "README.md"
description = "SAORI to resize image and save as png (limited edition)"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
resize = "0.8.4"
rgb = "0.8.37"
png = "0.17.13"
gif = "0.13.1"
jpeg-decoder = "0.3.1"
tinybmp = "0.5.0"
embedded-graphics = "0.8.1"
image-webp = "0.1.2"
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3.9", features = ["winbase", "libloaderapi", "stringapiset"]}
[dev-dependencies]
tempfile = "3.10.1"
encoding_rs = "0.8.33"
[lib]
name = "resizedpngmini"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1