summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-10-19 08:35:35 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-10-19 08:41:19 +0200
commit87df89b28213257f9020f5da3460905dcba537b1 (patch)
tree15c77e3e6b0d504248a4d9c43d961c79d2e3746d
parenta73b2d0d04fddbfe69e0872b6856b112ebec6d71 (diff)
cargo-deny: Ignore security advisories for now
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--deny.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/deny.toml b/deny.toml
index 4d12353..95aaf3c 100644
--- a/deny.toml
+++ b/deny.toml
@@ -61,3 +61,18 @@ skip = [
skip-tree = [
]
+
+[advisories]
+ignore = [
+ # "Potential segfault in the time crate"
+ #
+ # Patches available, but as "time-rs" is not a direct dependency, we cannot
+ # do anything here
+ "RUSTSEC-2020-0071",
+
+ # "Potential segfault in `localtime_r` invocations"
+ #
+ # No patches available yet
+ "RUSTSEC-2020-0159",
+]
+