33 lines
864 B
TOML
33 lines
864 B
TOML
# Minimal cargo-deny policy for the workspace scaffold. Expand as
|
|
# dependencies are added in later todos.
|
|
|
|
[advisories]
|
|
yanked = "deny"
|
|
# Unmaintained, but compile-time proc-macros pinned by the Leptos 0.8 tree
|
|
# with no upgrade path; not reachable with untrusted runtime input.
|
|
ignore = [
|
|
"RUSTSEC-2024-0436", # paste (via tachys/leptos)
|
|
"RUSTSEC-2026-0173", # proc-macro-error2 (via leptos_macro/rstml)
|
|
]
|
|
|
|
[licenses]
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"ISC",
|
|
"Unicode-3.0",
|
|
"Zlib",
|
|
# Permissive/public-domain licenses on transitive deps that cannot be
|
|
# substituted: base16 (leptos wasm_split), webpki-roots (reqwest),
|
|
# xxhash-rust (leptos server_fn).
|
|
"CC0-1.0",
|
|
"CDLA-Permissive-2.0",
|
|
"BSL-1.0",
|
|
]
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|