This commit is contained in:
Mona Mayrhofer 2026-03-03 18:08:02 +01:00
parent 6d466c65a4
commit 579869f2f0
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 374AB152BDEBA1AE
21 changed files with 168 additions and 2771 deletions

View file

@ -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"