From 3558868db4b780db0afea43e9709a338233424dc Mon Sep 17 00:00:00 2001 From: Andrea Frigido Date: Tue, 18 Jul 2023 16:21:29 +0100 Subject: [PATCH] Update license field following SPDX 2.1 license expression standard The new recommendation is to follow the SPDX 2.1 standard. This allows automatic license verification software to work properly. Reference: https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields --- crates/shared/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"