Add advisory for deprecated/unmaintained quickersort

The author of the `quickersort` crate has deprecated it and do not
recommend using it anymore.

Everything in it has been incorporated into std::sort_unstable in the
standard library as of Rust 1.20.
This commit is contained in:
Johan Andersson
2019-12-19 00:24:39 +01:00
parent 7bc1753de3
commit 6da6344b00

View File

@@ -0,0 +1,15 @@
[advisory]
id = "RUSTSEC-0000-0000"
package = "quickersort"
date = "2019-12-19"
title = "quickersort is deprecated and unmaintained"
informational = "unmaintained"
url = "https://github.com/notriddle/quickersort/commit/0bc164366315801f0c6b31f4081b7df9fc894076"
unaffected_versions = ["> 3.0.1"]
patched_versions = []
description = """
The author of the `quickersort` crate has deprecated it and do not recommend using it anymore.
Everything in it has been incorporated into [std::sort_unstable](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.sort_unstable) in the standard library as of Rust 1.20
"""