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,