Skip to content

Commit 81aa76c

Browse files
build(deps): Bump the cargo group with 2 updates (#76)
* build(deps): Bump the cargo group with 2 updates Bumps the cargo group with 2 updates: [brioche-core](https://github.com/brioche-dev/brioche) and [password-hash](https://github.com/RustCrypto/traits). Updates `brioche-core` from `55e0da3` to `f3eba0c` - [Release notes](https://github.com/brioche-dev/brioche/releases) - [Commits](brioche-dev/brioche@55e0da3...f3eba0c) Updates `password-hash` from 0.5.0 to 0.6.0 - [Commits](RustCrypto/traits@password-hash-v0.5.0...password-hash-v0.6.0) --- updated-dependencies: - dependency-name: brioche-core dependency-version: f3eba0c83e88d53a5fda0de0ef7b19e3214e54ca dependency-type: direct:production dependency-group: cargo - dependency-name: password-hash dependency-version: 0.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com> * hore: remove password-hash dependeny, and only rely on the re-export from argon2 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jérémy Audiger <jeremy.audiger@icloud.com>
1 parent 0798f44 commit 81aa76c

3 files changed

Lines changed: 13 additions & 16 deletions

File tree

Cargo.lock

Lines changed: 12 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ color-eyre = "0.6.5"
2121
dotenvy = "0.15.7"
2222
envy = "0.4.2"
2323
eyre = "0.6.12"
24-
password-hash = "0.5.0"
2524
serde = { version = "1.0.228", features = ["derive"] }
2625
serde_json = "1.0.149"
2726
sqlx = { version = "0.8.6", features = [

src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use argon2::PasswordVerifier;
2+
use argon2::password_hash::PasswordHashString;
23
use axum::body::Body;
34
use axum_extra::headers::{Authorization, authorization::Basic};
45
use brioche_core::{
@@ -8,7 +9,6 @@ use brioche_core::{
89
},
910
};
1011
use eyre::{Context as _, OptionExt as _};
11-
use password_hash::PasswordHashString;
1212
use std::{net::SocketAddr, str::FromStr as _, sync::Arc, time::Duration};
1313
use tracing::Span;
1414

0 commit comments

Comments
 (0)