# Documentation for this configuration file can be found here1# https://embarkstudios.github.io/cargo-deny/checks/cfg.html23[graph]4targets = [5{ triple = "x86_64-unknown-linux-gnu" },6{ triple = "x86_64-apple-darwin" },7{ triple = "x86_64-pc-windows-msvc" },8{ triple = "aarch64-linux-android" },9]1011# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html12[licenses]13allow = [14"Apache-2.0 WITH LLVM-exception",15"Apache-2.0",16"BSD-3-Clause",17"ISC",18"MIT",19"MPL-2.0",20"Unicode-DFS-2016",21"Zlib",22"Unicode-3.0",23]2425[[licenses.clarify]]26name = "ring"27expression = "MIT AND ISC AND OpenSSL"28license-files = [29{ path = "LICENSE", hash = 0xbd0eed23 }30]3132# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html33[bans]34multiple-versions = "deny"35wildcards = "allow"36deny = []3738skip-tree = [39# proptest depends on bitflags 1.x.x while other crates depend on 2.x.x so40# ignore its dependency tree until it updates.41{ name = "proptest", depth = 20 },4243# This is maintained externally and we allow it to have duplicate44# dependencies relative to Wasmtime's main dependency tree.45{ name = "witx", depth = 20 },4647# They want to publish version 2.0 to upgrade `hashbrown` so in the meantime48# it is duplicated for us.49{ name = "indexmap", depth = 2 },5051# criterion is on old version, will update on next release.52{ name = "itertools" },5354# backtrace currently using an older version of gimli/addr2line55{ name = "backtrace" },5657# right now terminal_size pulls in an older version of io-lifetimes58{ name = "io-lifetimes" },5960{ name = "file-per-thread-logger", reason = "this uses an old version of env-logger; may be unmaintained?" }61]626364