From 6e85444c9854936b56415bb318e0e0c76a46bc2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20S=C3=A1nchez=20Mu=C3=B1oz?= Date: Fri, 24 Apr 2020 00:51:46 +0200 Subject: [PATCH] Add advisory for fake-static --- crates/fake-static/RUSTSEC-0000-0000.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 crates/fake-static/RUSTSEC-0000-0000.toml diff --git a/crates/fake-static/RUSTSEC-0000-0000.toml b/crates/fake-static/RUSTSEC-0000-0000.toml new file mode 100644 index 0000000..6f61e2c --- /dev/null +++ b/crates/fake-static/RUSTSEC-0000-0000.toml @@ -0,0 +1,17 @@ +[advisory] +id = "RUSTSEC-0000-0000" +package = "fake-static" +date = "2020-04-24" +title = "fake-static allows converting any reference into a `'static` reference" +description = """ +fake-static allows converting a refernce with any lifetime into +a reference with `'static` lifetime without the `unsafe` keyword. + +Internally, this crate does not use unsafe code, it instead +exploits a soundness bug in rustc: + +https://github.com/rust-lang/rust/issues/25860 +""" + +[versions] +patched = []