From 6439f12d5de9131f51bd4d855862c70deb1c12ca Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 7 Jun 2020 18:11:04 -0700 Subject: [PATCH] Use `license` rather than `license-file` With `license-file`, `crates.io` shows the license as non-standard: https://crates.io/crates/websteer. Declare the license as per SPDX: https://spdx.org/licenses/ --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b69031d..d5ba4f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ description = "Route urls to specific browsers" edition = "2018" readme = "README.md" repository = "https://github.com/Arrowbox/websteer" -license-file = "LICENSE" +license = "GPL-3.0-only" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html