bump all deps

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-04-21 20:05:19 -04:00 committed by June
parent 85b5597ea7
commit 54cf992490
3 changed files with 22 additions and 14 deletions

View file

@ -129,9 +129,9 @@ artifacts:
.push-oci-image: .push-oci-image:
stage: publish stage: publish
image: docker:26.0.1 image: docker:26.0.2
services: services:
- docker:26.0.1-dind - docker:26.0.2-dind
variables: variables:
IMAGE_SUFFIX_AMD64: amd64 IMAGE_SUFFIX_AMD64: amd64
IMAGE_SUFFIX_ARM64V8: arm64v8 IMAGE_SUFFIX_ARM64V8: arm64v8

17
Cargo.lock generated
View file

@ -399,12 +399,13 @@ dependencies = [
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.0.94" version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
dependencies = [ dependencies = [
"jobserver", "jobserver",
"libc", "libc",
"once_cell",
] ]
[[package]] [[package]]
@ -2995,9 +2996,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]] [[package]]
name = "signal-hook-registry" name = "signal-hook-registry"
version = "1.4.1" version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [ dependencies = [
"libc", "libc",
] ]
@ -3164,18 +3165,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.58" version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.58" version = "1.0.59"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View file

@ -21,7 +21,7 @@ rust-version = "1.75.0"
rand = "0.8.5" rand = "0.8.5"
# Used for conduit::Error type # Used for conduit::Error type
thiserror = "1.0.58" thiserror = "1.0.59"
# Used to encode server public key # Used to encode server public key
base64 = "0.22.0" base64 = "0.22.0"
@ -105,7 +105,14 @@ features = ["util"]
[dependencies.tower-http] [dependencies.tower-http]
version = "0.5.2" version = "0.5.2"
features = ["add-extension", "cors", "sensitive-headers", "trace", "util", "catch-panic"] features = [
"add-extension",
"cors",
"sensitive-headers",
"trace",
"util",
"catch-panic",
]
[dependencies.hyper] [dependencies.hyper]
version = "1.3.1" version = "1.3.1"
@ -122,7 +129,7 @@ features = ["rustls-tls-native-roots", "socks", "hickory-dns"]
# all the serde stuff # all the serde stuff
# Used for pdu definition # Used for pdu definition
[dependencies.serde] [dependencies.serde]
version = "1.0.197" version = "1.0.198"
features = ["rc"] features = ["rc"]
# Used for appservice registration files # Used for appservice registration files
[dependencies.serde_yaml] [dependencies.serde_yaml]
@ -245,7 +252,7 @@ default-features = false
# Used for reading the configuration from conduit.toml & environment variables # Used for reading the configuration from conduit.toml & environment variables
[dependencies.figment] [dependencies.figment]
version = "0.10.17" version = "0.10.18"
features = ["env", "toml"] features = ["env", "toml"]
# Used for matrix spec type definitions and helpers # Used for matrix spec type definitions and helpers