From 19b20381f2e2feff0c8c6915ace0bc4b91bd9a33 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 2 Jul 2024 22:07:23 +0700 Subject: [PATCH] Use valid SPDX license expression. This is preferred by Cargo (and other tools) with the format used now noted as being deprecated in Cargo documentation. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 03bda18..1838f2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "bit-set" version = "0.6.0" authors = ["Alexis Beingessner "] -license = "MIT/Apache-2.0" +license = "Apache-2.0 OR MIT" description = "A set of bits" repository = "https://github.com/contain-rs/bit-set" homepage = "https://github.com/contain-rs/bit-set"