fast image operations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 4 insertions, 7 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d1554b0..ab92c06 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,27 +1,24 @@
[package]
name = "fimg"
-version = "0.4.1"
+version = "0.1.0"
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/"]
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
png = { version = "0.17", features = ["unstable"], optional = true }
[dev-dependencies]
-iai = { version = "0.1.1", features = [], git = "https://github.com/bend-n/iai/" }
+criterion = "0.5"
[[bench]]
name = "overlays"
harness = false
-[[bench]]
-name = "affine_transformations"
-harness = false
-
[features]
save = ["png"]
default = ["save"]