-
Notifications
You must be signed in to change notification settings - Fork 5
/
deny.toml
46 lines (41 loc) · 1.11 KB
/
deny.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[graph]
targets = [
# Desktop
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "aarch64-apple-darwin" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
# WASM
{ triple = "wasm32-unknown-unknown" },
# iOS
{ triple = "aarch64-apple-ios-sim" },
{ triple = "x86_64-apple-ios" },
{ triple = "aarch64-apple-ios" },
# Android
{ triple = "aarch64-linux-android" },
{ triple = "armv7-linux-androideabi" },
{ triple = "x86_64-linux-android" },
]
[advisories]
version = 2
ignore = [
# `sodiumoxide` is only used in tests
"RUSTSEC-2021-0137"
]
[bans]
multiple-versions = "allow"
[licenses]
version = 2
allow = ["Apache-2.0", "MIT", "MPL-2.0", "GPL-3.0", "CC0-1.0", "BSD-3-Clause",
"Apache-2.0 WITH LLVM-exception", "ISC", "Zlib"]
exceptions = [
{ allow = ["Unicode-DFS-2016"], name = "unicode-ident" },
]
[[licenses.clarify]]
name = "pkiprocmacros"
expression = "Apache-2.0 OR MIT"
license-files = []
[sources.allow-org]
github = ["wireapp"]