From cf5caa816a54e5ee454012108fafd5a17c64591d Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sat, 18 Apr 2026 18:04:56 +0100 Subject: [PATCH] Update license field format in Cargo.toml - Specify SPDX license expression properly using boolean operator - Order the most permissive license first --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 64c7328..e2251fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "count occurrences of a given byte, or the number of UTF-8 code po edition = "2018" name = "bytecount" version = "0.6.9" -license = "Apache-2.0/MIT" +license = "MIT OR Apache-2.0" repository = "https://github.com/llogiq/bytecount" categories = ["algorithms", "no-std"] readme = "README.md"