1# Configuration file used for `cargo deny check`, which checks for licensing 2# issues and security adviories. 3# 4# For a list of possible sections and their default values, see 5# https://github.com/EmbarkStudios/cargo-deny/blob/main/deny.template.toml 6# 7# For further documentation, see https://embarkstudios.github.io/cargo-deny/. 8 9# This section is considered when running `cargo deny check licenses` 10# More documentation for the licenses section can be found here: 11# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html 12[licenses] 13# List of explicitly allowed licenses 14# See https://spdx.org/licenses/ for list of possible licenses 15# [possible values: any SPDX 3.11 short identifier (+ optional exception)]. 16allow = ["ISC"] 17 18# This section is considered when running `cargo deny check bans`. 19# More documentation about the 'bans' section can be found here: 20# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html 21[bans] 22# Lint level for when multiple versions of the same crate are detected 23multiple-versions = "deny" 24# List of crates that are allowed. Use with care! 25# This is meant to control any external dependencies. This is effectively 26# a minimalist binding library and we try to have none, so you are strongly 27# encouraged not to add dependencies here. 28allow = []