Minor updates to crate manifests and readme
This commit is contained in:
parent
5036518108
commit
55977b8981
3 changed files with 6 additions and 4 deletions
|
@ -5,7 +5,7 @@ description = "VERY fast encoder/decoder for QOI (Quite Okay Image) format"
|
||||||
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
|
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT/Apache-2.0"
|
||||||
repository = "https://github.com/aldanor/qoi-fast"
|
repository = "https://github.com/aldanor/qoi-fast"
|
||||||
homepage = "https://github.com/aldanor/qoi-fast"
|
homepage = "https://github.com/aldanor/qoi-fast"
|
||||||
documentation = "https://docs.rs/qoi-fast"
|
documentation = "https://docs.rs/qoi-fast"
|
||||||
|
|
|
@ -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)
|
[![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)
|
[![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)
|
[![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:
|
Quick summary:
|
||||||
|
|
||||||
- One of the [fastest](https://github.com/aldanor/qoi-fast#benchmarks)
|
- One of the [fastest](https://github.com/aldanor/qoi-fast#benchmarks)
|
||||||
QOI encoders/decoders out there.
|
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.
|
- Zero unsafe code.
|
||||||
- Supports decoding from / encoding to `std::io` streams directly.
|
- Supports decoding from / encoding to `std::io` streams directly.
|
||||||
- Roundtrip-tested vs the reference C implementation; fuzz-tested.
|
- Roundtrip-tested vs the reference C implementation; fuzz-tested.
|
||||||
|
@ -38,5 +39,4 @@ qoi-fast 3202.04 4666.84 388.7 266.7
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
Dual-licensed under the terms of both the MIT license and the
|
This project is dual-licensed under MIT and Apache 2.0.
|
||||||
Apache License (Version 2.0)
|
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
name = "qoi-bench"
|
name = "qoi-bench"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
license = "MIT/Apache-2.0"
|
||||||
|
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# internal
|
# internal
|
||||||
|
|
Loading…
Reference in a new issue