mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 02:28:19 -06:00
34 lines
673 B
TOML
34 lines
673 B
TOML
[package]
|
|
name = "fimg"
|
|
version = "0.4.6"
|
|
authors = ["bend-n <bend.n@outlook.com>"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
description = "fast image operations"
|
|
repository = "https://github.com/bend-n/fimg"
|
|
exclude = ["src/cat.png", "src/small_cat.png", "benches/"]
|
|
|
|
[dependencies]
|
|
png = { version = "0.17", features = ["unstable"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
iai = { version = "0.1.1", features = [], git = "https://github.com/bend-n/iai/" }
|
|
|
|
[[bench]]
|
|
name = "overlays"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "affine_transformations"
|
|
harness = false
|
|
|
|
[features]
|
|
save = ["png"]
|
|
default = ["save"]
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
opt-level = 3
|
|
lto = "thin"
|
|
incremental = true
|