fimg/Cargo.toml
2023-09-06 18:43:27 +07:00

22 lines
407 B
TOML

[package]
name = "fimg"
version = "0.3.1"
authors = ["bend-n <bend.n@outlook.com>"]
license = "MIT"
edition = "2021"
description = "fast image operations"
repository = "https://github.com/bend-n/fimg"
[dependencies]
png = { version = "0.17", features = ["unstable"], optional = true }
[features]
save = ["png"]
default = ["save"]
[profile.release]
debug = 2
opt-level = 3
lto = "thin"
incremental = true