2026-02-27 21:30:42 +01:00
|
|
|
[graph]
|
|
|
|
|
# We don't expect to run on different architectures than the normal tier-1 targets
|
|
|
|
|
targets = [
|
|
|
|
|
"x86_64-unknown-linux-gnu",
|
|
|
|
|
"aarch64-unknown-linux-gnu",
|
|
|
|
|
"x86_64-unknown-linux-musl",
|
|
|
|
|
"aarch64-apple-darwin",
|
|
|
|
|
"x86_64-apple-darwin",
|
|
|
|
|
"x86_64-pc-windows-msvc",
|
|
|
|
|
]
|
|
|
|
|
all-features = true
|
|
|
|
|
|
|
|
|
|
[advisories]
|
|
|
|
|
ignore = []
|
|
|
|
|
|
|
|
|
|
[licenses]
|
|
|
|
|
version = 2
|
|
|
|
|
allow = [
|
|
|
|
|
"EUPL-1.2",
|
2026-02-28 11:35:52 +01:00
|
|
|
"Unicode-3.0",
|
2026-02-27 21:30:42 +01:00
|
|
|
#"0BSD",
|
|
|
|
|
#"Apache-2.0 WITH LLVM-exception",
|
2026-03-03 18:08:02 +01:00
|
|
|
"Apache-2.0",
|
|
|
|
|
"BSD-2-Clause",
|
|
|
|
|
"BSD-3-Clause",
|
|
|
|
|
"BSL-1.0",
|
|
|
|
|
"CC0-1.0",
|
|
|
|
|
"ISC",
|
2026-02-27 21:30:42 +01:00
|
|
|
# "MIT-0",
|
|
|
|
|
"MIT",
|
|
|
|
|
#"MPL-2.0",
|
|
|
|
|
#"Unicode-3.0",
|
|
|
|
|
"Unlicense",
|
2026-03-03 18:08:02 +01:00
|
|
|
"Zlib",
|
|
|
|
|
|
|
|
|
|
#TODO Read up on that one
|
|
|
|
|
"CDLA-Permissive-2.0"
|
2026-02-27 21:30:42 +01:00
|
|
|
]
|
|
|
|
|
exceptions = [
|
|
|
|
|
# { name = "unicode-ident", allow = ["Unicode-DFS-2016"] }
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[bans]
|
|
|
|
|
multiple-versions = "warn"
|
|
|
|
|
wildcards = "deny"
|
|
|
|
|
# Certain crates that we do not want multiple versions of in the dependency tree
|
|
|
|
|
deny = []
|
2026-03-03 18:08:02 +01:00
|
|
|
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" },
|
|
|
|
|
]
|
2026-02-27 21:30:42 +01:00
|
|
|
|
|
|
|
|
[sources]
|
|
|
|
|
unknown-registry = "warn"
|
|
|
|
|
unknown-git = "warn"
|
|
|
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
|
|
|
allow-git = []
|