mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-02-13 21:18:11 +01:00
As announced in #228, this commit migrates all advisories to the new V2 format, which splits version information into a separate section, and now has a structure which corresponds to the internal code structure of the `rustsec` crate. This is a breaking change for users of `cargo-audit` < 0.9, and anyone who has written a 3rd party advisory format parser.
21 lines
701 B
TOML
21 lines
701 B
TOML
[advisory]
|
|
id = "RUSTSEC-2018-0014"
|
|
package = "chan"
|
|
title = "chan is end-of-life; use crossbeam-channel instead"
|
|
informational = "unmaintained"
|
|
date = "2018-07-31"
|
|
url = "https://github.com/BurntSushi/chan/commit/0a5c0d4ad4adc90a54ee04a427389acf2e157275"
|
|
description = """
|
|
**`chan` has reached its end-of-life and is now deprecated.**
|
|
|
|
The intended successor of this crate is
|
|
[`crossbeam-channel`](https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel).
|
|
Its API is strikingly similar, but comes with a much better `select!` macro,
|
|
better performance, a better test suite and an all-around better
|
|
implementation.
|
|
"""
|
|
|
|
[versions]
|
|
unaffected = ["> 0.1.23"] # last release
|
|
patched = []
|