-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdeny.toml
More file actions
75 lines (66 loc) · 2.02 KB
/
Copy pathdeny.toml
File metadata and controls
75 lines (66 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
75
[graph]
exclude-unpublished = true
[advisories]
unmaintained = "none"
ignore = []
[licenses]
confidence-threshold = 0.8
allow = [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"Unicode-3.0",
"Zlib",
"ISC",
"CDLA-Permissive-2.0",
"Apache-2.0 WITH LLVM-exception",
"CC0-1.0",
"0BSD",
"BSL-1.0",
"OpenSSL"
]
[bans]
multiple-versions = "deny"
highlight = "all"
skip-tree = [
{ name = "windows_x86_64_msvc" },
{ name = "windows_x86_64_gnullvm" },
{ name = "windows_x86_64_gnu" },
{ name = "windows_i686_msvc" },
{ name = "windows_i686_gnullvm" },
{ name = "windows_i686_gnu" },
{ name = "windows_aarch64_msvc" },
{ name = "windows_aarch64_gnullvm" },
{ name = "windows-targets" },
{ name = "windows-sys" },
# TODO: @geofmureithi Investigate why these are causing issues possibly due to sqlx dependencies
{ name = "getrandom" },
{ name = "hashbrown" },
{ name = "rand" },
{ name = "rand_chacha" },
{ name = "rand_core" },
# TODO: @geofmureithi Investigate why these are causing issues possibly due to axum/actix dependencies
{ name = "convert_case" },
{ name = "cookie" },
{ name = "h2" },
{ name = "heck" },
{ name = "http" },
{ name = "socket2" },
{ name = "thiserror" },
{ name = "thiserror-impl" },
{ name = "typed-builder" },
{ name = "typed-builder-macro" },
# TODO: @geofmureithi Resolve these deps
{ name = "core-foundation" }, # lettre vs reqwest
{ name = "openssl-probe" }, # lettre vs reqwest
{ name = "security-framework" }, # lettre vs reqwest
{ name = "darling" }, # leptos-struct-table-macro vs default-struct-builder
{ name = "darling_core" }, # leptos-struct-table-macro vs default-struct-builder
{ name = "darling_macro" }, # leptos-struct-table-macro vs default-struct-builder
{ name = "leptos-use" }, # leptos-struct-table vs leptos_i18n
{ name = "impl-more" } # actix-web vs actix-web-lab
]
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-git = []