From 37a39a6b3f0d27bc2bc53c63956b4ebc403d014a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 10 Jan 2018 16:38:51 -0800 Subject: [PATCH] Cargo.toml: Replace '/' with 'OR' in 'license' Catch up with the recommendations from rust-lang/cargo@7dee65fe (src/doc/manifest: Pin 'license' to SPDX 2.1 expressions and the 2.4 list, 2018-01-04, rust-lang/cargo#4898), which deprecated '/' in favor of vanilla SPDX license expressions. I've gone with the disjunctive OR, and most contributors have signed off on that change: * Without Boats wanted to match the crates.io licensing [1], and they meant OR [2]. * Rodolphe Breard [3], Laurence Tratt [4], and Kai NODA [5] intended OR. [1]: https://github.com/rust-lang-nursery/license-exprs/issues/14#issuecomment-356143955 [2]: https://github.com/rust-lang/crates.io/pull/1226 [3]: https://github.com/rust-lang-nursery/license-exprs/issues/14#issuecomment-356421093 [4]: https://github.com/rust-lang-nursery/license-exprs/issues/14#issuecomment-356429049 [5]: https://github.com/rust-lang-nursery/license-exprs/issues/14#issuecomment-356863618 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1d4fab4..45ce185 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,6 @@ name = "license-exprs" version = "1.3.0" authors = ["Without Boats "] -license = "Apache-2.0/MIT" +license = "Apache-2.0 OR MIT" description = "Validate SPDX 2.0 license expressions." repository = "https://github.com/withoutboats/license-exprs"