From 28d667ade9425b1d7b71f15c2444597b439651eb Mon Sep 17 00:00:00 2001 From: Wolf Thomsen Date: Sat, 12 Nov 2022 21:31:58 +0100 Subject: [PATCH] add badges to crates.io and docs.rs to README.md (#554) --- README.md | 19 +++++++++++++++++++ src/lib.rs | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/README.md b/README.md index 5d97d5d..2df20f6 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,27 @@ # ureq +
+ + + Crates.io version + + + + docs.rs docs + + + + Crates.io downloads + +
+ A simple, safe HTTP client. + Ureq's first priority is being easy for you to use. It's great for anyone who wants a low-overhead HTTP client that just gets the job done. Works very well with HTTP APIs. Its features include cookies, JSON, HTTP proxies, diff --git a/src/lib.rs b/src/lib.rs index 87c91bc..1daa5e1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,8 +7,27 @@ // we're not changing public api due to a lint. #![allow(clippy::upper_case_acronyms)] +//!
+//! +//! +//! Crates.io version +//! +//! +//! +//! docs.rs docs +//! +//! +//! +//! Crates.io downloads +//! +//!
+//! //! A simple, safe HTTP client. //! +//! //! Ureq's first priority is being easy for you to use. It's great for //! anyone who wants a low-overhead HTTP client that just gets the job done. Works //! very well with HTTP APIs. Its features include cookies, JSON, HTTP proxies,