From 18c6e621e97752639f244aec4fcb67ca6f8ff81a Mon Sep 17 00:00:00 2001 From: bendn Date: Wed, 27 Sep 2023 19:03:46 +0700 Subject: [PATCH] fix docs (?) --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cead450..fae1c2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "fimg" -version = "0.4.8" +version = "0.4.9" authors = ["bend-n "] license = "MIT" edition = "2021" description = "fast image operations" repository = "https://github.com/bend-n/fimg" -exclude = ["tdata", "benches/"] +exclude = ["tdata", "benches/", ".gitignore"] [dependencies] png = { version = "0.17", features = ["unstable"], optional = true } @@ -16,10 +16,12 @@ 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 [features]