-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdeny.toml
More file actions
63 lines (55 loc) · 1.37 KB
/
deny.toml
File metadata and controls
63 lines (55 loc) · 1.37 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[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-pc-windows-msvc" },
# WASM
{ triple = "wasm32-unknown-unknown" },
# iOS
{ triple = "aarch64-apple-ios-sim" },
{ triple = "aarch64-apple-ios" },
# Android
{ triple = "aarch64-linux-android" },
{ triple = "armv7-linux-androideabi" },
{ triple = "x86_64-linux-android" },
]
[advisories]
version = 2
# Fail if ignored advisories don't exist (anymore).
unused-ignored-advisory = "deny"
ignore = [
# `paste` is no longer maintained and its repo is archived,
# however `uniffi` still depends on it.
"RUSTSEC-2024-0436",
# The fix at https://github.com/RustCrypto/RSA/pull/394 is merged,
# and will be in rsa v0.10, once that comes out of the eternal
# pre-release state. We need to update it via our rusty-jwt-simple.
"RUSTSEC-2023-0071",
]
[bans]
multiple-versions = "allow"
[licenses]
version = 2
allow = [
"Apache-2.0",
"MIT",
"MPL-2.0",
"GPL-3.0-only",
"BSD-3-Clause",
"Apache-2.0 WITH LLVM-exception",
"ISC",
"Zlib",
"Unicode-3.0",
]
[[licenses.clarify]]
name = "pkiprocmacros"
expression = "Apache-2.0 OR MIT"
license-files = []
[sources]
unknown-git = "deny"
unknown-registry = "deny"
[sources.allow-org]
github = ["wireapp"]