blob: 849416cd4e28af41254172516b4378f65abb288b [file] [log] [blame]
Aditya Belsareff911b42022-02-04 23:57:51 +00001# Configuration used for dependency checking with cargo-deny.
2#
3# For further details on all configuration options see:
4# https://embarkstudios.github.io/cargo-deny/checks/cfg.html
5targets = [
6 { triple = "x86_64-unknown-linux-gnu" },
7 { triple = "x86_64-apple-darwin" },
8 { triple = "x86_64-pc-windows-msvc" },
9]
10
11# Deny all advisories unless explicitly ignored.
12[advisories]
13vulnerability = "deny"
14unmaintained = "deny"
15yanked = "deny"
16notice = "deny"
17ignore = []
18
19# Deny multiple versions unless explicitly skipped.
20[bans]
21multiple-versions = "deny"
22wildcards = "allow"
23
24######################################
25
26# List of allowed licenses.
27[licenses]
28allow = [
29 "Apache-2.0",
30 "MIT",
31]
32copyleft = "deny"