fast image operations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 7 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ab92c06..d1554b0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,24 +1,27 @@
[package]
name = "fimg"
-version = "0.1.0"
+version = "0.4.1"
authors = ["bend-n <[email protected]>"]
license = "MIT"
edition = "2021"
description = "fast image operations"
repository = "https://github.com/bend-n/fimg"
-
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+exclude = ["src/cat.png", "src/small_cat.png", "benches/"]
[dependencies]
png = { version = "0.17", features = ["unstable"], optional = true }
[dev-dependencies]
-criterion = "0.5"
+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"]