From 8e0818a2e4c9be0b8502b4c06eb7b84e180efe89 Mon Sep 17 00:00:00 2001 From: Alex Touchet Date: Thu, 24 Feb 2022 19:51:54 -0800 Subject: [PATCH] Update Readme and use SPDX license format --- README.md | 2 +- form_urlencoded/Cargo.toml | 2 +- idna/Cargo.toml | 2 +- percent_encoding/Cargo.toml | 2 +- url/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b40d13e..ab31bff 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ URL library for Rust, based on the [URL Standard](https://url.spec.whatwg.org/). [Documentation](https://docs.rs/url/) -Please see [UPGRADING.md](https://github.com/servo/rust-url/blob/master/UPGRADING.md) if you are upgrading from 0.x to 1.x. +Please see [UPGRADING.md](https://github.com/servo/rust-url/blob/master/UPGRADING.md) if you are upgrading from a previous version. diff --git a/form_urlencoded/Cargo.toml b/form_urlencoded/Cargo.toml index c778d2d..50173f6 100644 --- a/form_urlencoded/Cargo.toml +++ b/form_urlencoded/Cargo.toml @@ -4,7 +4,7 @@ version = "1.0.1" authors = ["The rust-url developers"] description = "Parser and serializer for the application/x-www-form-urlencoded syntax, as used by HTML forms." repository = "https://github.com/servo/rust-url" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" edition = "2018" rust-version = "1.45" diff --git a/idna/Cargo.toml b/idna/Cargo.toml index 9566cc7..5a20b16 100644 --- a/idna/Cargo.toml +++ b/idna/Cargo.toml @@ -4,7 +4,7 @@ version = "0.2.3" authors = ["The rust-url developers"] description = "IDNA (Internationalizing Domain Names in Applications) and Punycode." repository = "https://github.com/servo/rust-url/" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" autotests = false edition = "2018" rust-version = "1.45" diff --git a/percent_encoding/Cargo.toml b/percent_encoding/Cargo.toml index bfc458d..b9a61a5 100644 --- a/percent_encoding/Cargo.toml +++ b/percent_encoding/Cargo.toml @@ -4,7 +4,7 @@ version = "2.1.0" authors = ["The rust-url developers"] description = "Percent encoding and decoding" repository = "https://github.com/servo/rust-url/" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" edition = "2018" rust-version = "1.45" diff --git a/url/Cargo.toml b/url/Cargo.toml index 3955078..d9bb186 100644 --- a/url/Cargo.toml +++ b/url/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/servo/rust-url" readme = "../README.md" keywords = ["url", "parser"] categories = ["parser-implementations", "web-programming", "encoding"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" include = ["src/**/*", "LICENSE-*", "README.md", "tests/**"] edition = "2018" rust-version = "1.45"