Skip to content

Commit

Permalink
build(deps): bump rand from 0.9.0-alpha.1 to 0.9.0-alpha.2
Browse files Browse the repository at this point in the history
Bumps [rand](https://github.com/rust-random/rand) from 0.9.0-alpha.1 to 0.9.0-alpha.2.
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/0.9.0-alpha.2/CHANGELOG.md)
- [Commits](https://github.com/rust-random/rand/commits/0.9.0-alpha.2)

---
updated-dependencies:
- dependency-name: rand
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and bbortt committed Aug 14, 2024
1 parent 663c3c1 commit 07c02d4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env_logger = "0.11.5"
lazy_static = "1.5.0"
log = "0.4.22"
postgres = "0.19.8"
rand = "0.9.0-alpha.1"
rand = "0.9.0-alpha.2"
serde = { version = "1.0.207", features = ["derive"] }
reqwest = { version = "0.12.5", features = ["json"] }
serde_json = "1.0.124"
Expand Down
2 changes: 1 addition & 1 deletion src/password.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use log::trace;
use rand::distributions::Alphanumeric;
use rand::distr::Alphanumeric;
use rand::{thread_rng, Rng};

pub(crate) fn generate_random_password(length: usize) -> String {
Expand Down

0 comments on commit 07c02d4

Please sign in to comment.