Update dependencies

This commit is contained in:
Slatian 2024-04-21 00:38:30 +02:00
parent 2657aae847
commit 7e58423269
2 changed files with 12 additions and 12 deletions

14
Cargo.lock generated
View File

@ -143,9 +143,9 @@ dependencies = [
[[package]]
name = "axum-client-ip"
version = "0.5.1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e7c467bdcd2bd982ce5c8742a1a178aba7b03db399fd18f5d5d438f5aa91cb4"
checksum = "72188bed20deb981f3a4a9fe674e5980fd9e9c2bd880baa94715ad5d60d64c67"
dependencies = [
"axum",
"forwarded-header-value",
@ -492,7 +492,7 @@ dependencies = [
"hickory-proto",
"hickory-resolver",
"http 1.1.0",
"idna 0.4.0",
"idna 0.5.0",
"lazy_static",
"lib-humus",
"maxminddb",
@ -1046,9 +1046,9 @@ checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
[[package]]
name = "ipnetwork"
version = "0.18.0"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4088d739b183546b239688ddbc79891831df421773df95e236daf7867866d355"
checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
dependencies = [
"serde",
]
@ -1145,9 +1145,9 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
[[package]]
name = "maxminddb"
version = "0.23.0"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe2ba61113f9f7a9f0e87c519682d39c43a6f3f79c2cc42c3ba3dda83b1fa334"
checksum = "d6087e5d8ea14861bb7c7f573afbc7be3798d3ef0fae87ec4fd9a4de9a127c3c"
dependencies = [
"ipnetwork",
"log",

View File

@ -11,10 +11,10 @@ lib-humus = { version="0.2", features=["axum-view+cookie"] }
axum = { version = "0.7", features = ["macros"] }
axum-extra = { version = "0.9", features = ["cookie", "typed-header"] }
axum-client-ip = "0.5"
clap = { version = "4.4", features = ["derive"] }
axum-client-ip = "0.6"
clap = { version = "4.5", features = ["derive"] }
governor = "0.6"
idna = "0.4"
idna = "0.5"
lazy_static = "1.4.0"
parking_lot = "0.12"
regex = "1.10"
@ -26,6 +26,6 @@ tower = "0.4"
tower-http = { version = "0.5", features = ["fs"] }
hickory-proto = "0.24"
hickory-resolver = { version = "0.24", features = ["dns-over-rustls","dns-over-https","dns-over-quic","native-certs"] }
maxminddb = "0.23"
maxminddb = "0.24"
mime = "0.3"
http = "1.0"
http = "1.1"