mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-05 19:20:34 +01:00
As proposed in #240 and tracked in #414, this PR translates all advisories into the new "V3" advisory format, which is based on Markdown with leading TOML front matter. This format makes it easier to see rendered Markdown syntax descriptions, whether rendered by an IDE or GitHub. This should help with both crafting advisories initially as well as review, and ideally encourages more lengthy descriptions. Support for this format shipped in `cargo-audit` v0.12.0 on May 6th, 2020.
25 lines
611 B
Markdown
25 lines
611 B
Markdown
```toml
|
|
[advisory]
|
|
id = "RUSTSEC-2018-0015"
|
|
package = "term"
|
|
date = "2018-11-19"
|
|
informational = "unmaintained"
|
|
url = "https://github.com/Stebalien/term/issues/93"
|
|
|
|
[versions]
|
|
patched = []
|
|
unaffected = ["> 0.6.1"]
|
|
```
|
|
|
|
# term is looking for a new maintainer
|
|
|
|
The author of the `term` crate does not have time to maintain it and is looking
|
|
for a new maintainer.
|
|
|
|
Some maintained alternatives you can potentially switch to instead, depending
|
|
on your needs:
|
|
|
|
- [`crossterm`](https://github.com/crossterm-rs/crossterm)
|
|
- [`termcolor`](https://crates.io/crates/termcolor)
|
|
- [`yansi`](https://crates.io/crates/yansi)
|