forked from Mooncake-Labs/moonlink
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
102 lines (98 loc) · 2.55 KB
/
Copy pathdeny.toml
File metadata and controls
102 lines (98 loc) · 2.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[graph]
all-features = true
[licenses]
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"Zlib",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"bzip2-1.0.6",
"CC0-1.0",
"CDDL-1.0",
"CDLA-Permissive-2.0",
"ISC",
# Moonlink permission.
"LicenseRef-BSL-1.1",
"MIT",
"MPL-2.0",
"Unicode-3.0",
]
[sources]
unknown-git = "deny"
allow-git = [
"https://github.com/apache/iceberg-rust.git",
"https://github.com/Mooncake-Labs/rust-postgres.git?rev=14c8e599f5551a8caa96ff5023685a6f537a1455",
]
# TODO(hjiang): Cleanup these unmaintained crates.
[advisories]
ignore = [
"RUSTSEC-2023-0071", # rsa - marvin attack
"RUSTSEC-2024-0436", # paste - unmaintained
]
# TODO(hjiang): Resolve all duplicate dependencies.
[bans]
skip = [
{ name = "axum" },
{ name = "axum-core" },
{ name = "base64" },
{ name = "bitflags" },
{ name = "bzip2" },
{ name = "core-foundation" },
{ name = "darling" },
{ name = "darling_core" },
{ name = "darling_macro" },
{ name = "foldhash" },
{ name = "getrandom" },
{ name = "h2" },
{ name = "hashbrown" },
{ name = "http" },
{ name = "http-body" },
{ name = "hyper" },
{ name = "hyper-rustls" },
{ name = "indexmap" },
{ name = "itertools" },
{ name = "matchit" },
{ name = "nix" },
{ name = "object" },
{ name = "ordered-float" },
{ name = "petgraph" },
{ name = "phf" },
{ name = "phf_shared" },
{ name = "prost" },
{ name = "prost-derive" },
{ name = "prost-types" },
{ name = "quick-xml" },
{ name = "rand" },
{ name = "rand_chacha" },
{ name = "rand_core" },
{ name = "rustls" },
{ name = "rustls-native-certs" },
{ name = "rustls-pemfile" },
{ name = "rustls-webpki" },
{ name = "security-framework" },
{ name = "spin" },
{ name = "sqlparser" },
{ name = "socket2" },
{ name = "strum" },
{ name = "strum_macros" },
{ name = "tonic" },
{ name = "tokio-rustls" },
{ name = "tower" },
{ name = "typed-builder" },
{ name = "typed-builder-macro" },
{ name = "windows-link" },
{ name = "windows-sys" },
{ name = "windows-targets" },
{ name = "windows_aarch64_gnullvm" },
{ name = "windows_aarch64_msvc" },
{ name = "windows_i686_gnu" },
{ name = "windows_i686_gnullvm" },
{ name = "windows_i686_msvc" },
{ name = "windows-result" },
{ name = "windows-strings" },
{ name = "windows_x86_64_gnu" },
{ name = "windows_x86_64_gnullvm" },
{ name = "windows_x86_64_msvc" },
]