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
# cargo-deny configuration — advisories, licenses, and source hygiene for the
# whole dependency graph (including the git-pinned gpui/zed tree).
# Run locally with: nix run nixpkgs#cargo-deny -- check
[]
= "deny"
[]
# Additions here need a conscious decision; keep the list to what the graph
# actually pulls in.
= [
"0BSD",
"CDLA-Permissive-2.0",
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Zlib",
"Unicode-3.0",
"MPL-2.0",
"CC0-1.0",
]
[]
# The zed/gpui tree inevitably carries duplicate versions; keep this advisory
# rather than blocking.
= "warn"
[]
= "deny"
= "deny"
# The two deliberate direct git deps, plus the git sources they pull in
# transitively (zed's forks and the gpui-updater sibling crate) — everything
# that appears as `git+…` in Cargo.lock must be listed here.
= [
"https://github.com/zed-industries/zed",
"https://github.com/longbridge/gpui-component",
"https://github.com/AprilNEA/gpui-updater",
"https://github.com/zed-industries/font-kit",
"https://github.com/zed-industries/reqwest.git",
"https://github.com/zed-industries/scap",
"https://github.com/zed-industries/wgpu.git",
"https://github.com/zed-industries/xim-rs.git",
]