-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9eeb0e8
commit 5953b80
Showing
9 changed files
with
879 additions
and
604 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ targets = [ | |
all-features = true | ||
|
||
[advisories] | ||
ignore = [] | ||
ignore = ["RUSTSEC-2024-0384"] | ||
|
||
[bans] | ||
deny = [ | ||
|
@@ -38,13 +38,15 @@ deny = [ | |
] | ||
multiple-versions = "deny" | ||
skip = [ | ||
{ crate = "[email protected]", reason = "several crates use this old version" }, | ||
] | ||
skip-tree = [ | ||
{ crate = "[email protected]", reason = "matchers is using an old version, https://github.com/hawkw/matchers/pull/5, but it's also barely maintained..." }, | ||
{ crate = "[email protected]", reason = "Uses _many_ outdated crates" }, | ||
# Much like trust-dns this pulls in a ton of outdated dependencies, but it's _slightly_ better | ||
{ crate = "[email protected]", reason = "Uses _many_ outdated crates" }, | ||
{ crate = "[email protected]", reason = "several crates use this old version" }, | ||
{ crate = "[email protected]", reason = "several crates use this old version" }, | ||
{ crate = "[email protected]", reason = "several crates use this old version" }, | ||
{ crate = "[email protected]", reason = "several crates use this old version" }, | ||
] | ||
|
||
[bans.workspace-dependencies] | ||
|
@@ -54,13 +56,13 @@ skip-tree = [ | |
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html | ||
[licenses] | ||
version = 2 | ||
allow = ["Apache-2.0", "MIT", "ISC", "BSD-3-Clause"] | ||
allow = ["Apache-2.0", "MIT", "ISC", "BSD-3-Clause", "Unicode-3.0"] | ||
exceptions = [ | ||
{ crate = "adler32", allow = ["Zlib"] }, | ||
{ crate = "foldhash", allow = ["Zlib"] }, | ||
# This license should not really be used for code, but here we are | ||
{ crate = "notify", allow = ["CC0-1.0"] }, | ||
{ crate = "ring", allow = ["OpenSSL"] }, | ||
{ crate = "unicode-ident", allow = ["Unicode-DFS-2016"] }, | ||
{ crate = "webpki-roots", allow = ["MPL-2.0"] }, | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters