-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cargo update, tighten cargo-deny settings
This change also contains several major-version updates for dependencies to pass the cargo-deny checks.
- Loading branch information
Showing
19 changed files
with
224 additions
and
271 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ publish = false | |
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
syn = "1" | ||
syn = "2" | ||
quote = "1" | ||
|
||
[lib] | ||
|
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
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
[licenses] | ||
unlicensed = "deny" | ||
|
||
# Deny licenses unless they are specifically listed here | ||
copyleft = "deny" | ||
allow-osi-fsf-free = "neither" | ||
default = "deny" | ||
version = 2 | ||
|
||
# We want really high confidence when inferring licenses from text | ||
confidence-threshold = 0.93 | ||
|
@@ -26,6 +21,24 @@ allow = [ | |
|
||
exceptions = [ { allow = [ "MPL-2.0" ], name = "webpki-roots" } ] | ||
|
||
[bans] | ||
multiple-versions = "deny" | ||
wildcards = "deny" | ||
|
||
skip = [ | ||
# many crates still use syn v1 | ||
"syn@1", | ||
|
||
# tabled uses an older version of heck | ||
"[email protected]", | ||
] | ||
|
||
skip-tree = [ | ||
{ crate = "windows-sys" }, | ||
# aws-smithy-runtime uses many older dependencies | ||
{ crate = "[email protected]" }, | ||
] | ||
|
||
# https://github.com/hsivonen/encoding_rs The non-test code that isn't generated from the WHATWG data in this crate is | ||
# under Apache-2.0 OR MIT. Test code is under CC0. | ||
[[licenses.clarify]] | ||
|
Oops, something went wrong.