|
9 | 9 | version = 2
|
10 | 10 |
|
11 | 11 | ignore = [
|
12 |
| - # Advisory: https://rustsec.org/advisories/RUSTSEC-2021-0145 |
13 |
| - # atty potential misaligned pointer; used by some pretty-printing deps (criterion, miette, lalrpop) |
14 |
| - "RUSTSEC-2021-0145", |
15 |
| - # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 |
16 |
| - # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue |
17 |
| - "RUSTSEC-2020-0071", |
18 |
| - # Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0375 |
19 |
| - # `atty` is unmaintained, but we still use a version of criterion that brings it in |
20 |
| - "RUSTSEC-2024-0375" |
21 | 12 | ]
|
22 | 13 |
|
23 | 14 |
|
@@ -100,10 +91,7 @@ allow = [
|
100 | 91 | deny = [
|
101 | 92 | # Use `once_cell` instead
|
102 | 93 | # `OnceCell`s API is under consideration for inclusion in `std`: https://github.com/rust-lang/rust/issues/74465
|
103 |
| - { name = "lazy_static", wrappers = ["Inflector", "criterion", "insta", "console", "logos-codegen"] }, |
104 |
| - # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 |
105 |
| - # `time` < 0.2.23 has a potential (though unlikely) potential segfault |
106 |
| - { name = "time", version = "<0.2.23", wrappers = ["chrono"] }, |
| 94 | + { name = "lazy_static", wrappers = ["Inflector", "insta", "console", "logos-codegen"] }, |
107 | 95 | # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071
|
108 | 96 | # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue
|
109 | 97 | { name = "chrono", version = "<0.4.20" },
|
|
0 commit comments