Update Cargo.toml

This commit is contained in:
Ivan Smirnov 2021-11-28 16:54:16 +00:00
parent f8ec8011fc
commit afe6dd1ab3

View file

@ -1,18 +1,23 @@
[package] [package]
name = "qoi-fast" name = "qoi-fast"
version = "0.1.0" version = "0.0.1"
description = "Fast encoder/decoder for QOI (Quite Okay Image) format"
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"] authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"
repository = "https://github.com/aldanor/qoi-rust"
license = "MIT" license = "MIT"
keywords = [] repository = "https://github.com/aldanor/qoi-fast"
categories = [] homepage = "https://github.com/aldanor/qoi-fast"
description = "Pure Rust implementation of QOI (Quite Okay Image) format." documentation = "https://docs.rs/qoi-fast"
documentation = "https://docs.rs/qoi-rust" categories = ["multimedia::images", "multimedia::encoding"]
keywords = ["qoi", "graphics", "image", "encoding"]
exclude = [
"benches/*",
"assets/*",
]
[dev-dependencies] [dev-dependencies]
png = "0.17" png = "^0.17.2"
[features] [features]
reference-encoder = [] reference-encoder = []