Merge pull request #530 from vbrandl/dependabot/cargo/badgers-1.1.0

chore(deps): Bump badgers from 1.0.0 to 1.1.0
This commit is contained in:
Valentin Brandl 2022-12-19 10:58:13 +01:00 committed by GitHub
commit 51236eee78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 9 deletions

View File

@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Dependency Updates
* Updated [`badgers`](https://github.com/vbrandl/badgers) from 1.0.0 to 1.1.0 ([#530])
[#530]: https://github.com/vbrandl/hoc/pull/530
## [0.28.0] 2022-12-18

22
Cargo.lock generated
View File

@ -46,7 +46,7 @@ dependencies = [
"actix-service",
"actix-utils",
"ahash",
"base64",
"base64 0.13.0",
"bitflags",
"brotli",
"bytes",
@ -293,7 +293,7 @@ dependencies = [
"actix-tls",
"actix-utils",
"ahash",
"base64",
"base64 0.13.0",
"bytes",
"cfg-if",
"cookie",
@ -316,12 +316,12 @@ dependencies = [
[[package]]
name = "badgers"
version = "1.0.0"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26315f90cbcd241425a27dcc1140dbc85505e87ddc90f324067df6a158572fb3"
checksum = "9d7e5709e2ae2f0d8aa0db9aa872594c1e094cf346442227d09d723b635850f6"
dependencies = [
"ab_glyph",
"base64",
"base64 0.20.0",
"once_cell",
]
@ -331,6 +331,12 @@ 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 = "bitflags"
version = "1.3.2"
@ -1608,7 +1614,7 @@ version = "0.11.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
dependencies = [
"base64",
"base64 0.13.0",
"bytes",
"encoding_rs",
"futures-core",
@ -1645,7 +1651,7 @@ version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
"base64",
"base64 0.13.0",
"bitflags",
"serde",
]
@ -1656,7 +1662,7 @@ version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85517cd381cf0c34694881d8aaf173107c6af7670e66cec18d7a1a8bfce3b758"
dependencies = [
"base64",
"base64 0.13.0",
"bytecount",
"itertools",
"md5",

View File

@ -15,7 +15,7 @@ name = "hoc"
[dependencies]
actix-rt = "2.7.0"
actix-web = "4.2.1"
badgers = "1.0.0"
badgers = "1.1.0"
bytes = "1.3.0"
config = { version = "0.13.3", features = ["toml"] }
dotenvy = "0.15.6"