From 178e890c8bce97126415bc7b2f7cda6e9dfd87c2 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Thu, 19 May 2022 12:53:15 -0700 Subject: [PATCH] switch to SPDX license expression The [docs][1] say that specifying multiple licenses with `/` was supported at one point but is now deprecated. Notably, crates.io does not have any mechanism to parse `/`-separated license lists, so this crate currently shows up as BSD-2-Clause only. [1]: 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 04d2dbd..8f7fda6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "David Cuddeback ", "Gonzalo Brito Gadeschi " ] -license = "BSD-2-Clause/MIT/Apache-2.0" +license = "BSD-2-Clause OR MIT OR Apache-2.0" description = "A Rust interface to the user-space API of the Mach 3.0 kernel that underlies OSX." repository = "https://github.com/fitzgen/mach" readme = "README.md"