From abac21c7799f921e423cf57277eff331c000f5ce Mon Sep 17 00:00:00 2001 From: Andrea Frigido Date: Tue, 18 Jul 2023 16:04:14 +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 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 32e2a53..351e185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ categories = ["memory-management", "rust-patterns", "no-std"] description = "A fast bump allocation arena for Rust." documentation = "https://docs.rs/bumpalo" edition = "2021" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" name = "bumpalo" readme = "README.md" repository = "https://github.com/fitzgen/bumpalo"