-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdeny.toml
More file actions
26 lines (24 loc) · 783 Bytes
/
deny.toml
File metadata and controls
26 lines (24 loc) · 783 Bytes
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
# adapted from https://github.com/dfinity-lab/common/blob/master/pkgs/overlays/packages/cargo-deny/buildtime.toml
# for context, see https://github.com/dfinity-lab/common/blob/master/pkgs/overlays/packages/cargo-deny/runtime.toml
# we allow more licenses in the build-time check. all rust dependencies are statically linked,
# so copyleft licenses like MPL which allow static linking are A-OK
[licenses]
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BlueOak-1.0.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"CDLA-Permissive-2.0",
"ISC",
"MIT",
"MPL-2.0",
"Zlib",
"Unicode-DFS-2016",
"Unicode-3.0",
"OpenSSL",
]
unused-allowed-license = "allow"
[sources]
allow-git = ["https://github.com/dfinity/agent-rs.git"]