forked from JonasKruckenberg/k23
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
23 lines (21 loc) · 682 Bytes
/
deny.toml
File metadata and controls
23 lines (21 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[graph]
targets = [
"riscv64-unknown-none-elf",
# You can also specify which target_features you promise are enabled for a
# particular target. target_features are currently not validated against
# the actual valid features supported by the target architecture.
#{ triple = "wasm32-unknown-unknown", features = ["atomics"] },
]
[licenses]
allow = [
"MIT", # requires license notice
"Apache-2.0", # requires license notice
"Unicode-3.0", # requires license notice
"Apache-2.0 WITH LLVM-exception",
"Unicode-3.0",
"Zlib"
]
[sources]
allow-git = [
"https://github.com/JonasKruckenberg/wasmtime?branch=no_std", # Cranelift no_std fork
]