From afe6dd1ab39472a2b19482f3b9cfff589b0dbc73 Mon Sep 17 00:00:00 2001 From: Ivan Smirnov Date: Sun, 28 Nov 2021 16:54:16 +0000 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f0c81b6..a2c1aaa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,18 +1,23 @@ [package] name = "qoi-fast" -version = "0.1.0" +version = "0.0.1" +description = "Fast encoder/decoder for QOI (Quite Okay Image) format" authors = ["Ivan Smirnov "] edition = "2021" readme = "README.md" -repository = "https://github.com/aldanor/qoi-rust" license = "MIT" -keywords = [] -categories = [] -description = "Pure Rust implementation of QOI (Quite Okay Image) format." -documentation = "https://docs.rs/qoi-rust" +repository = "https://github.com/aldanor/qoi-fast" +homepage = "https://github.com/aldanor/qoi-fast" +documentation = "https://docs.rs/qoi-fast" +categories = ["multimedia::images", "multimedia::encoding"] +keywords = ["qoi", "graphics", "image", "encoding"] +exclude = [ + "benches/*", + "assets/*", +] [dev-dependencies] -png = "0.17" +png = "^0.17.2" [features] reference-encoder = []