fast image operations
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "fimg"
version = "0.4.2"
authors = ["bend-n <[email protected]>"]
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