Marvin Jones a2f7621fbc chore(deny): trim deny.toml to essentials and allow all in-use licenses
Replace the full cargo-deny init template with just the two sections
that matter: the keycard-rs git-source allowance, and an explicit
license allow-list covering every license currently in the dependency
tree. cargo deny check now passes on sources, bans, and licenses;
advisories still fails on a pre-existing, unrelated RUSTSEC advisory.
2026-07-08 17:17:05 -04:00

21 lines
334 B
TOML

[licenses]
allow = [
"MIT",
"Apache-2.0",
"0BSD",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC0-1.0",
"CDLA-Permissive-2.0",
"ISC",
"LGPL-3.0-only",
"LGPL-3.0-or-later",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
[sources]
allow-git = ["https://github.com/keycard-tech/keycard-rs"]