mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 10:28:21 -06:00
22 lines
407 B
TOML
22 lines
407 B
TOML
[package]
|
|
name = "fimg"
|
|
version = "0.2.2"
|
|
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
|