29b1484737
epaint_default_fonts (egui's bundled Ubuntu fonts) is licensed under Ubuntu-font-1.0; add it to the allow list so cargo-deny passes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
793 B
TOML
40 lines
793 B
TOML
# cargo-deny: advisories (RustSec), license policy, duplicate crate detection.
|
|
# https://embarkstudios.github.io/cargo-deny/
|
|
#
|
|
# Install: cargo install cargo-deny
|
|
# Check: cargo deny check
|
|
|
|
[advisories]
|
|
# Only warn on unmaintained workspace crates; transitive unmaintained is common in GUI stacks.
|
|
unmaintained = "workspace"
|
|
|
|
[licenses]
|
|
confidence-threshold = 0.8
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"BSL-1.0",
|
|
"ISC",
|
|
"Zlib",
|
|
"Unicode-3.0",
|
|
"CC0-1.0",
|
|
"Unlicense",
|
|
"MPL-2.0",
|
|
"LGPL-2.1",
|
|
"LGPL-3.0",
|
|
"OpenSSL",
|
|
"OFL-1.1",
|
|
"LicenseRef-UFL-1.0",
|
|
"Ubuntu-font-1.0",
|
|
]
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "warn"
|