Skip to content

Commit

Permalink
Upgrade to v3.1.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
maoertel authored Jun 20, 2024
1 parent 28a037a commit a29fbfe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diqwest"
version = "3.0.0"
version = "3.1.0"
edition = "2021"
authors = ["Mathias Oertel <mathias.oertel@pm.me>"]
description = "Trait to extend reqwest for digest auth flow."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a29fbfe

Please sign in to comment.