Skip to content

Commit

Permalink
Bump base32 from 0.4.0 to 0.5.1 (#169)
Browse files Browse the repository at this point in the history
* Bump base32 from 0.4.0 to 0.5.1

Bumps [base32](https://github.com/andreasots/base32) from 0.4.0 to 0.5.1.
- [Commits](andreasots/base32@v0.4.0...v0.5.1)

---
updated-dependencies:
- dependency-name: base32
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* update to new RFC casing

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ho-Yon Mak <[email protected]>
  • Loading branch information
dependabot[bot] and hoyon authored Jan 2, 2025
1 parent 40a5852 commit a60bddb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 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 @@ -8,7 +8,7 @@ edition = "2021"

[dependencies]
base16 = "0.2.1"
base32 = "0.4.0"
base32 = "0.5.1"
chrono = "0.4"
itertools = "0.14.0"
fake = "2.4"
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/transformer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ fn fake_base32_string() -> String {
let random_bytes = SmallRng::from_rng(rand::thread_rng())
.unwrap_or_else(|_| SmallRng::from_entropy())
.gen::<[u8; 16]>();
base32::encode(Alphabet::RFC4648 { padding: true }, &random_bytes)
base32::encode(Alphabet::Rfc4648 { padding: true }, &random_bytes)
}

fn fake_company_name(args: &Option<HashMap<String, String>>, unique: usize) -> String {
Expand Down

0 comments on commit a60bddb

Please sign in to comment.