Browse Source

chore(audit): fix deny.toml to valid cargo-deny format

pull/6727/head
kalvinparker 3 months ago
parent
commit
5818cbfff9
  1. 16
      deny.toml

16
deny.toml

@ -1,15 +1,11 @@
[tool.cargo-deny]
# Minimal cargo-deny configuration to start explicit license and advisory checks. # cargo-deny configuration (minimal)
[advisories] [advisories]
# Use the default advisory database (rustsec) # default uses the rustsec DB; keep empty to use defaults
ignore = []
[licenses] [licenses]
# Start with an allowlist of licenses acceptable for this project. Adjust as policy. # Allowlist of licenses. Edit to match project policy.
allowed = ["AGPL-3.0-only", "MIT", "Apache-2.0", "BSD-3-Clause"] allow = ["AGPL-3.0-only", "MIT", "Apache-2.0", "BSD-3-Clause"]
replace = [] replace = []
exceptions = []
[licenses.exceptions]
# Temporary exceptions: list crate names and a short rationale
# example: "some-crate" = "Temporary exception while replacement is planned (issue #NNN)"

Loading…
Cancel
Save