From 8e472f9ccc7d745927426cbb2d9d077de545aa4e Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 14 Aug 2020 10:19:40 -0700 Subject: [PATCH] Cargo.toml: Use SPDX license syntax ("OR") in license field https://doc.rust-lang.org/cargo/reference/manifest.html#the-license-and-license-file-fields > Previously multiple licenses could be separated with a /, but that > usage is deprecated. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a688c854761..24f4748c108 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ description = "A command-line application for interacting with git repositories" repository = "https://github.com/Byron/git-oxide" authors = ["Sebastian Thiel "] edition = "2018" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" version = "0.3.0" default-run = "gix" include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]