diff --git a/CHANGELOG.md b/CHANGELOG.md index 17e2c8f..5278eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump `softprops/action-gh-release` from 1 to 2 ([#743](https://github.com/vbrandl/hoc/pull/743)) - Bump `bytes` from 1.5.0 to 1.6.0 ([#751](https://github.com/vbrandl/hoc/pull/751)) - Bump `actix-rt` from 2.9.0 to 2.10.0 ([#779](https://github.com/vbrandl/hoc/pull/779)) +- Bump `lazy_static` from 1.4.0 to 1.5.0 ([#783](https://github.com/vbrandl/hoc/pull/783)) ## [0.36.0] 2023-11-17 ### Dependencies diff --git a/Cargo.lock b/Cargo.lock index 12c2050..4fcae4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1616,9 +1616,9 @@ checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388" [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" diff --git a/Cargo.toml b/Cargo.toml index df46286..22501e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ config = { version = "0.14.0", features = ["toml"], default-features = false } dotenvy = "0.15.7" futures = "0.3.30" git2 = "0.19.0" -lazy_static = "1.4.0" +lazy_static = "1.5.0" mime = "0.3" number_prefix = "0.4.0" openssl-probe = "0.1.5"