1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Rust dependencies housekeeping

Including:
 - package upgrades
 - stop using the patched version of `ulid`
 - update cargo deny duplicate exception list
This commit is contained in:
Quentin Gliech
2023-09-14 23:29:27 +02:00
parent e9856f8691
commit c9155ef0cf
18 changed files with 282 additions and 250 deletions

View File

@ -20,7 +20,7 @@ opentelemetry-semantic-conventions = "0.12.0"
# Error management
thiserror.workspace = true
anyhow.workspace = true
sentry = { version = "0.31.6", default-features = false }
sentry = { version = "0.31.7", default-features = false }
# Web server
hyper = { version = "0.14.27", features = ["full"] }
@ -58,8 +58,8 @@ url.workspace = true
mime = "0.3.17"
rand.workspace = true
rand_chacha = "0.3.1"
headers = "0.3.8"
ulid = "1.0.0"
headers = "0.3.9"
ulid.workspace = true
mas-axum-utils = { path = "../axum-utils", default-features = false }
mas-data-model = { path = "../data-model" }