diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f0084..9d5e6be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Dependency Updates * Updated [`tokio`](https://github.com/tokio-rs/tokio) from 1.24.1 to 1.24.2 ([#547]) +* Updated [`badgers`](https://github.com/vbrandl/badgers) from 1.1.0 to 1.2.0 ([#548]) * Updated [`reqwest`](https://github.com/seanmonstar/reqwest) from 0.11.13 to 0.11.14 ([#549]) * Updated [`ructe`](https://github.com/kaj/ructe) from 0.15.0 to 0.16.1 ([#559]) [#547]: https://github.com/vbrandl/hoc/pull/547 +[#548]: https://github.com/vbrandl/hoc/pull/548 [#559]: https://github.com/vbrandl/hoc/pull/559 diff --git a/Cargo.lock b/Cargo.lock index fbca26f..f38589f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -328,12 +328,12 @@ dependencies = [ [[package]] name = "badgers" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d7e5709e2ae2f0d8aa0db9aa872594c1e094cf346442227d09d723b635850f6" +checksum = "7954c1a712ad1b82f0f719bbeee7dc5ffd3d13a66c7dfb1e1df02f79e2729441" dependencies = [ "ab_glyph", - "base64 0.20.0", + "base64 0.21.0", "once_cell", ] @@ -343,12 +343,6 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" -[[package]] -name = "base64" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5" - [[package]] name = "base64" version = "0.21.0" diff --git a/Cargo.toml b/Cargo.toml index 518ed1c..183e7f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ name = "hoc" [dependencies] actix-rt = "2.7.0" actix-web = "4.2.1" -badgers = "1.1.0" +badgers = "1.2.0" bytes = "1.3.0" config = { version = "0.13.3", features = ["toml"] } dotenvy = "0.15.6"