From a0b88926fa9cb3ea0773caa805d305e44f76ae3d Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Mon, 23 Nov 2020 00:02:01 -0800 Subject: [PATCH] Remove a keyword from Cargo.toml. (#250) Crates has a max of 5 keywords. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cb5adf3..63345b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "ureq" -version = "2.0.0-rc1" +version = "2.0.0-rc2" authors = ["Martin Algesten ", "Jacob Hoffman-Andrews "] description = "Simple, safe HTTP client" license = "MIT/Apache-2.0" repository = "https://github.com/algesten/ureq" readme = "README.md" -keywords = ["web", "request", "rest", "https", "http", "client"] +keywords = ["web", "request", "https", "http", "client"] categories = ["web-programming::http-client"] edition = "2018"