We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2db97f commit 0e0304aCopy full SHA for 0e0304a
deny.toml
@@ -6,7 +6,12 @@ vulnerability = "deny"
6
unmaintained = "warn"
7
yanked = "warn"
8
notice = "warn"
9
-ignore = []
+ignore = [
10
+ # Potential Unix segfault if setting env vars in threaded context. The only use of the chrono crate is within
11
+ # ash-molten's build script, so can safely ignore.
12
+ # https://github.com/chronotope/chrono/issues/499
13
+ "RUSTSEC-2020-0159",
14
+]
15
16
# This section is considered when running `cargo deny check bans`.
17
# More documentation about the 'bans' section can be found here:
0 commit comments