fimg/Cargo.toml

22 lines
407 B
TOML
Raw Normal View History

2023-09-04 18:45:23 -05:00
[package]
name = "fimg"
2023-09-06 07:28:53 -05:00
version = "0.3.3"
2023-09-04 18:45:23 -05:00
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