# Project policies.
#
# These policies can be enforced using `cargo deny check`.
[]
# Don't allow code with an unclear license.
= "deny"
# Don't allow "copylefted" licenses unless they're listed below.
= "deny"
# Allow common non-restrictive licenses. ISC is used for various DNS and crypto
# things, and it's a minimally restrictive open source license.
= ["MIT", "Apache-2.0", "BSD-3-Clause", "BSD-2-Clause", "CC0-1.0", "ISC", "OpenSSL", "Zlib"]
# Many organizations ban AGPL-licensed code
# https://opensource.google/docs/using/agpl-policy/
= ["AGPL-3.0"]
[]
# Warn about multiple versions of the same crate, unless we've indicated otherwise below.
= "warn"