fast image operations
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "fimg" -version = "0.4.11" +version = "0.4.12" authors = ["bend-n <[email protected]>"] license = "MIT" edition = "2021" @@ -12,7 +12,8 @@ exclude = ["tdata", "benches/", ".gitignore"] png = { version = "0.17", features = ["unstable"], optional = true } [dev-dependencies] -iai = { version = "0.1.1", features = [], git = "https://github.com/bend-n/iai/" } +iai = { version = "0.1.1", features = [ +], git = "https://github.com/bend-n/iai/" } [[bench]] name = "overlays" @@ -24,6 +25,11 @@ name = "affine_transformations" path = "benches/affine_transformations.rs" harness = false +[[bench]] +name = "tile" +path = "benches/tile.rs" +harness = false + [features] save = ["png"] default = ["save"] |