From 397d86ac855e3b5da4f0df57cb4aa3b3efd4c9d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Koz=C5=82owski?= Date: Thu, 26 Jan 2023 12:24:07 +0100 Subject: [PATCH] Use OR operator to specify multiple licenses Previously multiple licenses could be separated with a /, but that usage is deprecated. --- Cargo.toml | 2 +- plot/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f261ca66..8feac1d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/bheisler/criterion.rs" readme = "README.md" keywords = ["criterion", "benchmark"] categories = ["development-tools::profiling"] -license = "Apache-2.0/MIT" +license = "Apache-2.0 OR MIT" exclude = ["book/*"] [dependencies] diff --git a/plot/Cargo.toml b/plot/Cargo.toml index a1ce36eb..94668a0d 100644 --- a/plot/Cargo.toml +++ b/plot/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/bheisler/criterion.rs" readme = "README.md" keywords = ["plotting", "gnuplot", "criterion"] categories = ["visualization"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" [dependencies] cast = "0.3"