1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

bump other rust dependencies

This commit is contained in:
Quentin Gliech
2023-10-20 00:08:13 +02:00
parent a5bb9b5089
commit b9258f74cc
6 changed files with 264 additions and 246 deletions

489
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -55,7 +55,7 @@ version = "1.0.107"
# Custom error types
[workspace.dependencies.thiserror]
version = "1.0.49"
version = "1.0.50"
# Logging and tracing
[workspace.dependencies.tracing]

View File

@ -13,7 +13,7 @@ icu_list = { version = "1.3.2", features = ["compiled_data", "std"] }
icu_locid = { version = "1.3.2", features = ["std",] }
icu_locid_transform = { version = "1.3.2", features = ["compiled_data", "std"] }
icu_plurals = { version = "1.3.2", features = ["compiled_data", "std"] }
icu_provider = { version = "1.3.1", features = ["std", "sync"] }
icu_provider = { version = "1.3.2", features = ["std", "sync"] }
icu_provider_adapters = { version = "1.3.2", features = ["std"] }
pad = "0.1.6"
pest = "2.7.4"

View File

@ -13,7 +13,7 @@ chrono.workspace = true
thiserror.workspace = true
futures-util = "0.3.28"
apalis-core = { version = "0.4.4", features = ["tokio-comp"] }
apalis-core = { version = "0.4.5", features = ["tokio-comp"] }
opentelemetry = "0.20.0"
rand_core = "0.6.4"
serde.workspace = true

View File

@ -9,8 +9,8 @@ repository.workspace = true
[dependencies]
anyhow.workspace = true
apalis-core = { version = "0.4.4", features = ["extensions", "tokio-comp", "storage"] }
apalis-cron = "0.4.4"
apalis-core = { version = "0.4.5", features = ["extensions", "tokio-comp", "storage"] }
apalis-cron = "0.4.5"
async-stream = "0.3.5"
async-trait = "0.1.74"
chrono.workspace = true

View File

@ -56,23 +56,20 @@ deny = [
multiple-versions = "deny"
skip = [
{ name = "webpki-roots" }, # We, lettre and sqlx have different versions :(
{ name = "rustls-webpki" },
{ name = "syn", version = "1.0.109" }, # There are a few crates still depdending on the 1.x
{ name = "webpki-roots", version = "0.24.0" }, # sqlx depends on an old version
{ name = "spin", version = "0.5.2" }, # lazy_static and ring depends on the old version
{ name = "event-listener", version = "2.5.3" }, # async-channel (wiremock) and sqlx-core depend on the old version
{ name = "regex-syntax", version = "0.6.29" }, # tracing-subscriber[env-filter] -> matchers depends on the old version
{ name = "regex-automata", version = "0.1.10" }, # ^
{ name = "ordered-float", version = "2.10.0" }, # opentelemetry-jaeger -> thrift depends on the old version
{ name = "itertools", version = "0.10.5" }, # wasmtime & others depends on the old version
{ name = "idna", version = "0.3.0" }, # lettre depends on an old version
{ name = "hashbrown" }, # Too many versions :(
{ name = "bitflags", version = "1.3.2" }, # axum depends on an old version
]
skip-tree = [
{ name = "hashbrown", depth = 2 }, # Too many versions :(
# Let's ignore wiremock for now, we want to get rid of it
{ name = "wiremock", depth = 3 },
{ name = "rustix", version = "0.37.23", depth = 2 }, # wasmtime depends on the old version
{ name = "darling", version = "0.14.4", depth = 2 }, # sea-query-attr depends on an old version
]