Skip to content

Commit 5ba0d42

Browse files
zxqfd555Manul from Pathway
authored andcommitted
put in place cargo-deny for on demand license and vulnerability checks (#9608)
GitOrigin-RevId: caa3fb20417f3cf2a68945f908a9a78c06dfef1d
1 parent a96e6a0 commit 5ba0d42

File tree

4 files changed

+91
-78
lines changed

4 files changed

+91
-78
lines changed

Cargo.lock

Lines changed: 60 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ serde_with = "3.12.0"
9898
smallvec = { version = "1.15.0", features = ["union", "const_generics"] }
9999
syn = { version = "2.0.101", features = ["default", "full", "visit", "visit-mut"] } # Hack to keep features unified between normal and build deps
100100
sysinfo = "0.35.1"
101-
tantivy = "0.22.0"
101+
tantivy = "0.25.0"
102102
tempfile = "3.20.0"
103103
thiserror = "1.0.63"
104104
timely = { path = "./external/timely-dataflow/timely", features = ["bincode"] }

deny.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[graph]
2+
exclude = [
3+
"abomonation", # vendorized fork
4+
"differential-dataflow" # vendorized fork
5+
]
6+
7+
[licenses]
8+
allow = [
9+
"Apache-2.0",
10+
"Apache-2.0 WITH LLVM-exception",
11+
"BSL-1.0",
12+
"BSD-2-Clause",
13+
"BSD-3-Clause",
14+
"CC0-1.0",
15+
"CDLA-Permissive-2.0",
16+
"ISC",
17+
"MIT",
18+
"MPL-2.0",
19+
"Unicode-3.0",
20+
"Zlib"
21+
]
22+
23+
[[licenses.exceptions]]
24+
allow = ["BUSL-1.1"]
25+
name = "pathway"
26+
27+
[advisories]
28+
unmaintained = "none"

0 commit comments

Comments
 (0)