Skip to content

Commit d9eb9c6

Browse files
committed
Adjust licensing exceptions for WASM components
Recent versions of wasm-tools are now Apache-2.0 or MIT or Apache-2.0 with the LLVM exception, rather than strictly Apache-2.0 with the LLVM exception. The only component with the exception has moved to a new dependency `wasi-preview1-component-adapter-provider`. Update tidy exceptions to reflect this.
1 parent cb3d494 commit d9eb9c6

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Diff for: src/tools/tidy/src/deps.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,14 @@ const EXCEPTIONS: ExceptionList = &[
9898
("ryu", "Apache-2.0 OR BSL-1.0"), // BSL is not acceptble, but we use it under Apache-2.0 // cargo/... (because of serde)
9999
("self_cell", "Apache-2.0"), // rustc (fluent translations)
100100
("snap", "BSD-3-Clause"), // rustc
101-
("wasm-encoder", "Apache-2.0 WITH LLVM-exception"), // rustc
102-
("wasm-metadata", "Apache-2.0 WITH LLVM-exception"), // rustc
103-
("wasmparser", "Apache-2.0 WITH LLVM-exception"), // rustc
104-
("wast", "Apache-2.0 WITH LLVM-exception"), // rustc
105-
("wat", "Apache-2.0 WITH LLVM-exception"), // rustc
106-
("wit-component", "Apache-2.0 WITH LLVM-exception"), // rustc
107-
("wit-parser", "Apache-2.0 WITH LLVM-exception"), // rustc
101+
("wasi-preview1-component-adapter-provider", "Apache-2.0 WITH LLVM-exception"), // rustc
102+
// ("wasm-encoder", "Apache-2.0 WITH LLVM-exception"), // rustc
103+
// ("wasm-metadata", "Apache-2.0 WITH LLVM-exception"), // rustc
104+
// ("wasmparser", "Apache-2.0 WITH LLVM-exception"), // rustc
105+
// ("wast", "Apache-2.0 WITH LLVM-exception"), // rustc
106+
// ("wat", "Apache-2.0 WITH LLVM-exception"), // rustc
107+
// ("wit-component", "Apache-2.0 WITH LLVM-exception"), // rustc
108+
// ("wit-parser", "Apache-2.0 WITH LLVM-exception"), // rustc
108109
// tidy-alphabetical-end
109110
];
110111

0 commit comments

Comments
 (0)