2023-09-04 18:45:23 -05:00
|
|
|
[package]
|
|
|
|
name = "fimg"
|
2023-09-22 04:50:08 -05:00
|
|
|
version = "0.4.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"
|
2023-09-20 22:35:58 -05:00
|
|
|
exclude = ["src/cat.png", "src/small_cat.png", "benches/"]
|
2023-09-04 18:45:23 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
png = { version = "0.17", features = ["unstable"], optional = true }
|
|
|
|
|
2023-09-06 22:02:44 -05:00
|
|
|
[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
|
|
|
|
|
2023-09-04 18:45:23 -05:00
|
|
|
[features]
|
|
|
|
save = ["png"]
|
|
|
|
default = ["save"]
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = 2
|
|
|
|
opt-level = 3
|
|
|
|
lto = "thin"
|
|
|
|
incremental = true
|