Skip to content

Commit

Permalink
[all] Update cargo deny to allow yaml-rust for now
Browse files Browse the repository at this point in the history
More info in this issue in the syntect repo:
trishume/syntect#526
  • Loading branch information
nazmulidris committed Apr 16, 2024
1 parent 171c9ef commit bfa0ed7
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html

[licenses]
allow = ["MIT", "Apache-2.0", "BSL-1.0", "ISC", "BSD-3-Clause", "MPL-2.0"]

exceptions = [
{ name = "unicode-ident", allow = [
"Unicode-DFS-2016",
] },
{ name = "is_ci", allow = [
"ISC",
] },
]
[[licenses.exceptions]]
name = "unicode-ident"
allow = ["Unicode-DFS-2016"]

[[licenses.exceptions]]
name = "is_ci"
allow = ["ISC"]

[advisories]
ignore = ["yaml-rust@0.4.5"]

0 comments on commit bfa0ed7

Please sign in to comment.