forked from spiceai/spiceai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeny.toml
More file actions
60 lines (50 loc) · 1.07 KB
/
deny.toml
File metadata and controls
60 lines (50 loc) · 1.07 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
[graph]
# Cargo deny will check dependencies via `--all-features`
all-features = true
[advisories]
ignore = [
]
yanked = "deny"
[bans]
allow-wildcard-paths = false
multiple-versions = "allow"
[licenses]
allow = [
"Apache-2.0 WITH LLVM-exception",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"BlueOak-1.0.0",
"CC0-1.0",
"ISC",
"MIT",
"MPL-2.0",
"Unicode-3.0",
"CDLA-Permissive-2.0",
"Zlib",
"OpenSSL",
"0BSD"
]
private = { ignore = false }
unused-allowed-license = "deny"
[sources]
unknown-git = "deny"
unknown-registry = "deny"
# text-embeddings-* have empty license but belongs to the text-embeddings-inference / Apache-2.0 license
[[licenses.clarify]]
name = "text-embeddings-core"
expression = "Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "text-embeddings-backend"
expression = "Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "text-embeddings-backend-core"
expression = "Apache-2.0"
license-files = []
[[licenses.clarify]]
name = "text-embeddings-backend-candle"
expression = "Apache-2.0"
license-files = []