...

Text file src/github.com/linkerd/linkerd2-proxy-api/deny.toml

Documentation: github.com/linkerd/linkerd2-proxy-api

     1targets = [
     2    { triple = "x86_64-unknown-linux-gnu" },
     3    { triple = "aarch64-unknown-linux-gnu" },
     4    { triple = "armv7-unknown-linux-gnu" },
     5]
     6
     7[advisories]
     8db-path = "~/.cargo/advisory-db"
     9db-urls = ["https://github.com/rustsec/advisory-db"]
    10vulnerability = "deny"
    11unmaintained = "warn"
    12yanked = "deny"
    13notice = "warn"
    14ignore = []
    15
    16[licenses]
    17exceptions = [
    18    # The Unicode-DFS--2016 license is necessary for unicode-ident because they
    19    # use data from the unicode tables to generate the tables which are
    20    # included in the application. We do not distribute those data files so
    21    # this is not a problem for us. See https://github.com/dtolnay/unicode-ident/pull/9/files
    22    # for more details.
    23    { allow = [
    24        "MIT",
    25        "Apache-2.0",
    26        "Unicode-DFS-2016",
    27    ], name = "unicode-ident" },
    28]
    29
    30unlicensed = "deny"
    31allow = [
    32    "Apache-2.0",
    33    "MIT",
    34]
    35deny = []
    36copyleft = "deny"
    37allow-osi-fsf-free = "neither"
    38default = "deny"
    39confidence-threshold = 0.8
    40[bans]
    41multiple-versions = "deny"
    42# Wildcard dependencies are used for all workspace-local crates.
    43wildcards = "allow"
    44highlight = "all"
    45deny = []
    46skip = [
    47    { name = "syn" },
    48]
    49skip-tree = []
    50
    51[sources]
    52unknown-registry = "deny"
    53unknown-git = "deny"
    54allow-registry = ["https://github.com/rust-lang/crates.io-index"]
    55allow-git = []

View as plain text