diff --git a/Cargo.toml b/Cargo.toml index f03e434..51261ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ description = "VERY fast encoder/decoder for QOI (Quite Okay Image) format" authors = ["Ivan Smirnov "] 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" diff --git a/README.md b/README.md index 906fd09..ba0a894 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/qoi-bench/Cargo.toml b/qoi-bench/Cargo.toml index a8306bb..71640e5 100644 --- a/qoi-bench/Cargo.toml +++ b/qoi-bench/Cargo.toml @@ -2,6 +2,8 @@ name = "qoi-bench" version = "0.1.0" edition = "2018" +license = "MIT/Apache-2.0" +authors = ["Ivan Smirnov "] [dependencies] # internal