cleanups
This commit is contained in:
parent
6d466c65a4
commit
579869f2f0
21 changed files with 168 additions and 2771 deletions
31
deny.toml
31
deny.toml
|
|
@ -20,18 +20,21 @@ allow = [
|
|||
"Unicode-3.0",
|
||||
#"0BSD",
|
||||
#"Apache-2.0 WITH LLVM-exception",
|
||||
#"Apache-2.0",
|
||||
# "BSD-2-Clause",
|
||||
#"BSD-3-Clause",
|
||||
#"BSL-1.0",
|
||||
#"CC0-1.0",
|
||||
#"ISC",
|
||||
"Apache-2.0",
|
||||
"BSD-2-Clause",
|
||||
"BSD-3-Clause",
|
||||
"BSL-1.0",
|
||||
"CC0-1.0",
|
||||
"ISC",
|
||||
# "MIT-0",
|
||||
"MIT",
|
||||
#"MPL-2.0",
|
||||
#"Unicode-3.0",
|
||||
"Unlicense",
|
||||
#"Zlib",
|
||||
"Zlib",
|
||||
|
||||
#TODO Read up on that one
|
||||
"CDLA-Permissive-2.0"
|
||||
]
|
||||
exceptions = [
|
||||
# { name = "unicode-ident", allow = ["Unicode-DFS-2016"] }
|
||||
|
|
@ -42,6 +45,20 @@ multiple-versions = "warn"
|
|||
wildcards = "deny"
|
||||
# Certain crates that we do not want multiple versions of in the dependency tree
|
||||
deny = []
|
||||
skip = [
|
||||
{ crate = "windows-sys", reason = "dioxus still depends on an old version" },
|
||||
|
||||
{ crate = "tungstenite", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "tokio-tungstenite", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "thiserror-impl", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "thiserror", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "rustc-hash", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "hashbrown", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "getrandom", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "convert_case", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "const-serialize", reason = "dioxus internally depends on two versions" },
|
||||
{ crate = "const-serialize-macro", reason = "dioxus internally depends on two versions" },
|
||||
]
|
||||
|
||||
[sources]
|
||||
unknown-registry = "warn"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue