Minor updates to crate manifests and readme

This commit is contained in:
Ivan Smirnov 2022-01-03 14:51:39 +03:00
parent 5036518108
commit 55977b8981
3 changed files with 6 additions and 4 deletions

View file

@ -5,7 +5,7 @@ description = "VERY fast encoder/decoder for QOI (Quite Okay Image) format"
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
edition = "2018"
readme = "README.md"
license = "MIT"
license = "MIT/Apache-2.0"
repository = "https://github.com/aldanor/qoi-fast"
homepage = "https://github.com/aldanor/qoi-fast"
documentation = "https://docs.rs/qoi-fast"

View file

@ -7,12 +7,13 @@ VERY fast encoder/decoder for [QOI image format](https://qoiformat.org/), implem
[![Documentation](https://img.shields.io/docsrs/qoi-fast)](https://docs.rs/qoi-fast)
[![Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance)
Quick summary:
- One of the [fastest](https://github.com/aldanor/qoi-fast#benchmarks)
QOI encoders/decoders out there.
- Compliant with the latest QOI [format specification]().
- Compliant with the latest QOI [format specification](https://qoiformat.org/qoi-specification.pdf).
- Zero unsafe code.
- Supports decoding from / encoding to `std::io` streams directly.
- Roundtrip-tested vs the reference C implementation; fuzz-tested.
@ -38,5 +39,4 @@ qoi-fast 3202.04 4666.84 388.7 266.7
### License
Dual-licensed under the terms of both the MIT license and the
Apache License (Version 2.0)
This project is dual-licensed under MIT and Apache 2.0.

View file

@ -2,6 +2,8 @@
name = "qoi-bench"
version = "0.1.0"
edition = "2018"
license = "MIT/Apache-2.0"
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
[dependencies]
# internal