fimg/Cargo.toml
bendn 43da761a4e
optimize Image::repeat
also removes some unsafe
2023-10-02 13:30:35 +07:00

42 lines
800 B
TOML

[package]
name = "fimg"
version = "0.4.12"
authors = ["bend-n <bend.n@outlook.com>"]
license = "MIT"
edition = "2021"
description = "fast image operations"
repository = "https://github.com/bend-n/fimg"
exclude = ["tdata", "benches/", ".gitignore"]
[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"
path = "benches/overlays.rs"
harness = false
[[bench]]
name = "affine_transformations"
path = "benches/affine_transformations.rs"
harness = false
[[bench]]
name = "tile"
path = "benches/tile.rs"
harness = false
[features]
save = ["png"]
default = ["save"]
[profile.release]
debug = 2
opt-level = 3
lto = "thin"
incremental = true