diff --git a/Cargo.toml b/Cargo.toml index d2e3be6..00c9027 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "diqwest" -version = "3.0.0" +version = "3.1.0" edition = "2021" authors = ["Mathias Oertel "] description = "Trait to extend reqwest for digest auth flow." diff --git a/README.md b/README.md index e91d286..18bb8eb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ In case the first response is not a `401` this first response is returned from ` `diqwest` is a lean crate and has nearly no dependencies: - `reqwest`, for sure, as `diqwest` is an extension to it. Without any enabled features and no default features. - `digest_auth` is used to calculate the answer. Without any enabled feature and no default features. -- `url` is used to parse parse a url on type level. Without any enabled feature and no default features. +- `url` is used to validate urls on type level. Without any enabled feature and no default features. That's it. No other dependencies are used. Not even `thiserror` is used to not force it on you. diff --git a/src/lib.rs b/src/lib.rs index ffbc407..ab761f7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,6 +9,13 @@ //! `send_with_digest_auth()` without any manipulation. In case the first response is a `401` //! but the `www-authenticate` header is missing the first reponse is returned as well. //! +//! `diqwest` is a lean crate and has nearly no dependencies: +//! - `reqwest`, for sure, as `diqwest` is an extension to it. Without any enabled features and no default features. +//! - `digest_auth` is used to calculate the answer. Without any enabled feature and no default features. +//! - `url` is used to validate urls on type level. Without any enabled feature and no default features. +//! +//! That's it. No other dependencies are used. Not even `thiserror` is used to not force it on you. +//! //! # Examples //! //! By default this crate works async: