You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-07 17:03:01 +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:
@@ -14,12 +14,12 @@ axum-extra = { version = "0.7.7", features = ["cookie-private", "cookie-key-expa
|
||||
chrono.workspace = true
|
||||
data-encoding = "2.4.0"
|
||||
futures-util = "0.3.28"
|
||||
headers = "0.3.8"
|
||||
headers = "0.3.9"
|
||||
http.workspace = true
|
||||
http-body = "0.4.5"
|
||||
mime = "0.3.17"
|
||||
rand.workspace = true
|
||||
sentry = { version = "0.31.6", default-features = false }
|
||||
sentry = { version = "0.31.7", default-features = false }
|
||||
serde.workspace = true
|
||||
serde_with = "3.3.0"
|
||||
serde_urlencoded = "0.7.1"
|
||||
@@ -29,7 +29,7 @@ tokio = "1.32.0"
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
tracing.workspace = true
|
||||
url.workspace = true
|
||||
ulid = { version = "1.0.0", features = ["serde"] }
|
||||
ulid.workspace = true
|
||||
|
||||
mas-data-model = { path = "../data-model" }
|
||||
mas-http = { path = "../http", features = ["client"] }
|
||||
|
@@ -42,9 +42,9 @@ opentelemetry-semantic-conventions = "0.12.0"
|
||||
opentelemetry-stdout = { version = "0.1.0", features = ["trace", "metrics"] }
|
||||
opentelemetry-zipkin = { version = "0.18.0", default-features = false }
|
||||
prometheus = "0.13.3"
|
||||
sentry = { version = "0.31.6", default-features = false, features = ["backtrace", "contexts", "panic", "tower"] }
|
||||
sentry-tracing = "0.31.5"
|
||||
sentry-tower = { version = "0.31.5", features = ["http"] }
|
||||
sentry = { version = "0.31.7", default-features = false, features = ["backtrace", "contexts", "panic", "tower"] }
|
||||
sentry-tracing = "0.31.7"
|
||||
sentry-tower = { version = "0.31.7", features = ["http"] }
|
||||
|
||||
mas-config = { path = "../config" }
|
||||
mas-data-model = { path = "../data-model" }
|
||||
|
@@ -19,7 +19,7 @@ camino = { version = "1.1.6", features = ["serde1"] }
|
||||
chrono.workspace = true
|
||||
figment = { version = "0.10.10", features = ["env", "yaml", "test"] }
|
||||
schemars = { version = "0.8.13", features = ["url", "chrono"] }
|
||||
ulid = { version = "1.0.0", features = ["serde"] }
|
||||
ulid.workspace = true
|
||||
url.workspace = true
|
||||
|
||||
serde.workspace = true
|
||||
|
@@ -13,7 +13,7 @@ thiserror.workspace = true
|
||||
serde.workspace = true
|
||||
url.workspace = true
|
||||
crc = "3.0.1"
|
||||
ulid = { version = "1.0.0", features = ["serde"] }
|
||||
ulid.workspace = true
|
||||
rand.workspace = true
|
||||
rand_chacha = "0.3.1"
|
||||
|
||||
|
@@ -11,11 +11,11 @@ repository.workspace = true
|
||||
async-trait = "0.1.73"
|
||||
tracing.workspace = true
|
||||
thiserror.workspace = true
|
||||
headers = "0.3.8"
|
||||
headers = "0.3.9"
|
||||
|
||||
mas-templates = { path = "../templates" }
|
||||
|
||||
[dependencies.lettre]
|
||||
version = "0.10.4"
|
||||
default-features = false
|
||||
features = ["tokio1-rustls-tls", "hostname", "builder", "tracing", "pool", "smtp-transport", "sendmail-transport"]
|
||||
features = ["tokio1-rustls-tls", "hostname", "builder", "tracing", "pool", "smtp-transport", "sendmail-transport"]
|
||||
|
@@ -18,7 +18,7 @@ thiserror.workspace = true
|
||||
tokio = { version = "1.32.0", features = ["sync"] }
|
||||
tracing.workspace = true
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
ulid = "1.0.0"
|
||||
ulid.workspace = true
|
||||
url.workspace = true
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
|
@@ -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" }
|
||||
|
@@ -11,7 +11,7 @@ repository.workspace = true
|
||||
axum = { version = "0.6.20", optional = true }
|
||||
bytes = "1.5.0"
|
||||
futures-util = "0.3.28"
|
||||
headers = "0.3.8"
|
||||
headers = "0.3.9"
|
||||
http.workspace = true
|
||||
http-body = "0.4.5"
|
||||
hyper = "0.14.27"
|
||||
|
@@ -26,7 +26,7 @@ chrono.workspace = true
|
||||
form_urlencoded = "1.2.0"
|
||||
futures = "0.3.28"
|
||||
futures-util = "0.3.28"
|
||||
headers = "0.3.8"
|
||||
headers = "0.3.9"
|
||||
http.workspace = true
|
||||
language-tags = "0.3.2"
|
||||
once_cell = "1.18.0"
|
||||
@@ -67,7 +67,7 @@ optional = true
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.5.0"
|
||||
bitflags = "2.3.3"
|
||||
bitflags = "2.4.0"
|
||||
mas-keystore = { path = "../keystore" }
|
||||
rand_chacha = "0.3.1"
|
||||
wiremock = "0.5.19"
|
||||
|
@@ -12,7 +12,7 @@ anyhow.workspace = true
|
||||
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
schemars = {version = "0.8.1", optional = true }
|
||||
schemars = {version = "0.8.13", optional = true }
|
||||
thiserror.workspace = true
|
||||
tokio = { version = "1.32.0", features = ["io-util", "rt"] }
|
||||
tracing.workspace = true
|
||||
@@ -30,4 +30,4 @@ jsonschema = ["dep:schemars"]
|
||||
|
||||
[[bin]]
|
||||
name = "schema"
|
||||
required-features = ["jsonschema"]
|
||||
required-features = ["jsonschema"]
|
||||
|
@@ -12,4 +12,4 @@ axum = { version = "0.6.20", default-features = false }
|
||||
serde.workspace = true
|
||||
serde_urlencoded = "0.7.1"
|
||||
url.workspace = true
|
||||
ulid = "1.0.0"
|
||||
ulid.workspace = true
|
||||
|
@@ -23,7 +23,7 @@ rand.workspace = true
|
||||
rand_chacha = "0.3.1"
|
||||
url.workspace = true
|
||||
uuid = "1.4.1"
|
||||
ulid = { version = "1.0.0", features = ["uuid", "serde"] }
|
||||
ulid = { workspace = true, features = ["uuid"] }
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
mas-storage = { path = "../storage" }
|
||||
|
@@ -21,7 +21,7 @@ serde_json.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-opentelemetry = "0.21.0"
|
||||
url.workspace = true
|
||||
ulid = "1.0.0"
|
||||
ulid.workspace = true
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
mas-data-model = { path = "../data-model" }
|
||||
|
@@ -25,7 +25,7 @@ tower = "0.4.13"
|
||||
tracing.workspace = true
|
||||
tracing-opentelemetry = "0.21.0"
|
||||
opentelemetry = "0.20.0"
|
||||
ulid = "1.0.0"
|
||||
ulid.workspace = true
|
||||
url.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
@@ -23,7 +23,7 @@ camino = "1.1.6"
|
||||
chrono.workspace = true
|
||||
url.workspace = true
|
||||
http.workspace = true
|
||||
ulid = { version = "1.0.0", features = ["serde"] }
|
||||
ulid.workspace = true
|
||||
rand.workspace = true
|
||||
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
|
Reference in New Issue
Block a user