Skip to content

Commit

Permalink
Adjust licensing exceptions for WASM components
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tgross35 committed Aug 6, 2024
1 parent cb3d494 commit d9eb9c6
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/tools/tidy/src/deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,14 @@ const EXCEPTIONS: ExceptionList = &[
("ryu", "Apache-2.0 OR BSL-1.0"), // BSL is not acceptble, but we use it under Apache-2.0 // cargo/... (because of serde)
("self_cell", "Apache-2.0"), // rustc (fluent translations)
("snap", "BSD-3-Clause"), // rustc
("wasm-encoder", "Apache-2.0 WITH LLVM-exception"), // rustc
("wasm-metadata", "Apache-2.0 WITH LLVM-exception"), // rustc
("wasmparser", "Apache-2.0 WITH LLVM-exception"), // rustc
("wast", "Apache-2.0 WITH LLVM-exception"), // rustc
("wat", "Apache-2.0 WITH LLVM-exception"), // rustc
("wit-component", "Apache-2.0 WITH LLVM-exception"), // rustc
("wit-parser", "Apache-2.0 WITH LLVM-exception"), // rustc
("wasi-preview1-component-adapter-provider", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wasm-encoder", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wasm-metadata", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wasmparser", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wast", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wat", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wit-component", "Apache-2.0 WITH LLVM-exception"), // rustc
// ("wit-parser", "Apache-2.0 WITH LLVM-exception"), // rustc
// tidy-alphabetical-end
];

Expand Down

0 comments on commit d9eb9c6

Please sign in to comment.