From f6ce09d26f6db497e2094bdb6bbc3e2635dd4797 Mon Sep 17 00:00:00 2001 From: Andrea Frigido Date: Tue, 18 Jul 2023 16:42:47 +0100 Subject: [PATCH] Update license field following SPDX 2.1 license expression standard --- Cargo.toml | 2 +- crates/backend/Cargo.toml | 2 +- crates/cli-support/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/externref-xform/Cargo.toml | 2 +- crates/futures/Cargo.toml | 2 +- crates/js-sys/Cargo.toml | 2 +- crates/macro-support/Cargo.toml | 2 +- crates/macro/Cargo.toml | 2 +- crates/multi-value-xform/Cargo.toml | 2 +- crates/shared/Cargo.toml | 2 +- crates/test-macro/Cargo.toml | 2 +- crates/test/Cargo.toml | 2 +- crates/threads-xform/Cargo.toml | 2 +- crates/wasm-conventions/Cargo.toml | 2 +- crates/wasm-interpreter/Cargo.toml | 2 +- crates/web-sys/Cargo.toml | 2 +- crates/webidl/Cargo.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6c3e8b15f7..aa4fe5e6e05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" readme = "README.md" categories = ["wasm"] repository = "https://github.com/rustwasm/wasm-bindgen" diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index c359a17e350..b43eabba19b 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-backend" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-backend" diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index d1247ea0c7a..bf43dee24b6 100644 --- a/crates/cli-support/Cargo.toml +++ b/crates/cli-support/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-cli-support" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-cli-support" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index e01faf1400b..1152af1a014 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-cli" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://rustwasm.github.io/wasm-bindgen/" diff --git a/crates/externref-xform/Cargo.toml b/crates/externref-xform/Cargo.toml index c8e5a69c897..329ac077bb5 100644 --- a/crates/externref-xform/Cargo.toml +++ b/crates/externref-xform/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-externref-xform" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/externref-xform" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-externref-xform" diff --git a/crates/futures/Cargo.toml b/crates/futures/Cargo.toml index fdf95c82fa4..639959a5700 100644 --- a/crates/futures/Cargo.toml +++ b/crates/futures/Cargo.toml @@ -3,7 +3,7 @@ authors = ["The wasm-bindgen Developers"] description = "Bridging the gap between Rust Futures and JavaScript Promises" documentation = "https://docs.rs/wasm-bindgen-futures" homepage = "https://rustwasm.github.io/wasm-bindgen/" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" name = "wasm-bindgen-futures" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures" readme = "./README.md" diff --git a/crates/js-sys/Cargo.toml b/crates/js-sys/Cargo.toml index a0e3ea81fc8..69b20fa9c78 100644 --- a/crates/js-sys/Cargo.toml +++ b/crates/js-sys/Cargo.toml @@ -11,7 +11,7 @@ description = """ Bindings for all JS global objects and functions in all JS environments like Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate. """ -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" edition = "2018" rust-version = "1.56" diff --git a/crates/macro-support/Cargo.toml b/crates/macro-support/Cargo.toml index 88c070cffdd..5faed0326ab 100644 --- a/crates/macro-support/Cargo.toml +++ b/crates/macro-support/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-macro-support" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen" diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index ae84b25a4b2..c7b8fa747d5 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-macro" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen" diff --git a/crates/multi-value-xform/Cargo.toml b/crates/multi-value-xform/Cargo.toml index d1d53f109b7..afb463db8a3 100644 --- a/crates/multi-value-xform/Cargo.toml +++ b/crates/multi-value-xform/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-multi-value-xform" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/multi-value-xform" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-multi-value-xform" diff --git a/crates/shared/Cargo.toml b/crates/shared/Cargo.toml index 0cb1765a75d..4fa77b619b2 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-shared" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-shared" diff --git a/crates/test-macro/Cargo.toml b/crates/test-macro/Cargo.toml index ed9bbf36b35..88d8c5de171 100644 --- a/crates/test-macro/Cargo.toml +++ b/crates/test-macro/Cargo.toml @@ -3,7 +3,7 @@ name = "wasm-bindgen-test-macro" version = "0.3.37" authors = ["The wasm-bindgen Developers"] description = "Internal testing macro for wasm-bindgen" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen" edition = "2018" rust-version = "1.56" diff --git a/crates/test/Cargo.toml b/crates/test/Cargo.toml index 72c75649b9b..768933597e2 100644 --- a/crates/test/Cargo.toml +++ b/crates/test/Cargo.toml @@ -3,7 +3,7 @@ name = "wasm-bindgen-test" version = "0.3.37" authors = ["The wasm-bindgen Developers"] description = "Internal testing crate for wasm-bindgen" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen" edition = "2018" rust-version = "1.56" diff --git a/crates/threads-xform/Cargo.toml b/crates/threads-xform/Cargo.toml index 5608de53302..0a608fd2f9d 100644 --- a/crates/threads-xform/Cargo.toml +++ b/crates/threads-xform/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-threads-xform" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/threads-xform" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-threads-xform" diff --git a/crates/wasm-conventions/Cargo.toml b/crates/wasm-conventions/Cargo.toml index b4e14264eb8..0d510486881 100644 --- a/crates/wasm-conventions/Cargo.toml +++ b/crates/wasm-conventions/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-wasm-conventions" version = "0.2.87" authors = ["The wasm-bindgen developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/wasm-conventions" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-wasm-conventions" diff --git a/crates/wasm-interpreter/Cargo.toml b/crates/wasm-interpreter/Cargo.toml index 271dd340780..bdbdc70dd1e 100644 --- a/crates/wasm-interpreter/Cargo.toml +++ b/crates/wasm-interpreter/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-wasm-interpreter" version = "0.2.87" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" repository = "https://github.com/rustwasm/wasm-bindgen/tree/main/crates/wasm-interpreter" homepage = "https://rustwasm.github.io/wasm-bindgen/" documentation = "https://docs.rs/wasm-bindgen-wasm-interpreter" diff --git a/crates/web-sys/Cargo.toml b/crates/web-sys/Cargo.toml index a4d75b1a33c..c648fdeb487 100644 --- a/crates/web-sys/Cargo.toml +++ b/crates/web-sys/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sy description = """ Bindings for all Web APIs, a procedurally generated crate from WebIDL """ -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" edition = "2018" rust-version = "1.56" diff --git a/crates/webidl/Cargo.toml b/crates/webidl/Cargo.toml index 8ea5684bf83..158511d5ecf 100644 --- a/crates/webidl/Cargo.toml +++ b/crates/webidl/Cargo.toml @@ -2,7 +2,7 @@ name = "wasm-bindgen-webidl" version = "0.2.76" authors = ["The wasm-bindgen Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" categories = ["wasm"] repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/webidl" homepage = "https://rustwasm.github.io/wasm-bindgen/"