You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-08-06 06:02:40 +03:00
Bump Rust dependencies
This commit is contained in:
412
Cargo.lock
generated
412
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -7,8 +7,8 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.64"
|
||||
axum = { version = "0.6.8", features = ["headers"] }
|
||||
axum-extra = { version = "0.5.0", features = ["cookie-private"] }
|
||||
axum = { version = "0.6.9", features = ["headers"] }
|
||||
axum-extra = { version = "0.6.0", features = ["cookie-private"] }
|
||||
chrono = "0.4.23"
|
||||
data-encoding = "2.3.3"
|
||||
futures-util = "0.3.26"
|
||||
@@ -17,7 +17,7 @@ http = "0.2.9"
|
||||
http-body = "0.4.5"
|
||||
mime = "0.3.16"
|
||||
rand = "0.8.5"
|
||||
sentry = { version = "0.29.3", default-features = false }
|
||||
sentry = { version = "0.30.0", default-features = false }
|
||||
serde = "1.0.152"
|
||||
serde_with = "2.2.0"
|
||||
serde_urlencoded = "0.7.1"
|
||||
|
@@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
anyhow = "1.0.69"
|
||||
atty = "0.2.14"
|
||||
axum = "0.6.8"
|
||||
axum = "0.6.9"
|
||||
camino = "1.1.3"
|
||||
clap = { version = "4.1.6", features = ["derive"] }
|
||||
dotenv = "0.15.0"
|
||||
@@ -23,7 +23,7 @@ serde_yaml = "0.9.17"
|
||||
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
tokio = { version = "1.25.0", features = ["full"] }
|
||||
tower = { version = "0.4.13", features = ["full"] }
|
||||
tower-http = { version = "0.3.5", features = ["fs", "compression-full"] }
|
||||
tower-http = { version = "0.4.0", features = ["fs", "compression-full"] }
|
||||
url = "2.3.1"
|
||||
watchman_client = "0.8.0"
|
||||
|
||||
@@ -39,9 +39,9 @@ opentelemetry-zipkin = { version = "0.16.0", features = ["opentelemetry-http"],
|
||||
opentelemetry-http = { version = "0.7.0", features = ["tokio", "hyper"], optional = true }
|
||||
opentelemetry-prometheus = { version = "0.11.0", optional = true }
|
||||
prometheus = { version = "0.13.3", optional = true }
|
||||
sentry = { version = "0.29.3", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls", "tower"] }
|
||||
sentry-tracing = "0.29.3"
|
||||
sentry-tower = { version = "0.29.3", features = ["http"] }
|
||||
sentry = { version = "0.30.0", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls", "tower"] }
|
||||
sentry-tracing = "0.30.0"
|
||||
sentry-tower = { version = "0.30.0", features = ["http"] }
|
||||
|
||||
mas-config = { path = "../config" }
|
||||
mas-email = { path = "../email" }
|
||||
|
@@ -16,7 +16,7 @@ anyhow = "1.0.69"
|
||||
camino = { version = "1.1.3", features = ["serde1"] }
|
||||
chrono = { version = "0.4.23", features = ["serde"] }
|
||||
figment = { version = "0.10.8", features = ["env", "yaml", "test"] }
|
||||
schemars = { version = "0.8.11", features = ["url", "chrono"] }
|
||||
schemars = { version = "0.8.12", features = ["url", "chrono"] }
|
||||
ulid = { version = "1.0.0", features = ["serde"] }
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
||||
@@ -24,7 +24,7 @@ serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_with = { version = "2.2.0", features = ["hex", "chrono"] }
|
||||
serde_json = "1.0.93"
|
||||
|
||||
pem-rfc7468 = "0.6.0"
|
||||
pem-rfc7468 = "0.7.0"
|
||||
rustls-pemfile = "1.0.2"
|
||||
rand = "0.8.5"
|
||||
rand_chacha = "0.3.1"
|
||||
|
@@ -12,8 +12,8 @@ thiserror = "1.0.38"
|
||||
|
||||
aws-sdk-sesv2 = { version = "0.24.0", default-features = false }
|
||||
aws-config = { version = "0.54.1", default-features = false }
|
||||
aws-smithy-client = { version = "0.54.3", default-features = false, features = ["client-hyper"] }
|
||||
aws-smithy-async = { version = "0.54.3", default-features = false, features = ["rt-tokio"] }
|
||||
aws-smithy-client = { version = "0.54.4", default-features = false, features = ["client-hyper"] }
|
||||
aws-smithy-async = { version = "0.54.4", default-features = false, features = ["rt-tokio"] }
|
||||
|
||||
mas-templates = { path = "../templates" }
|
||||
mas-http = { path = "../http", features = ["aws-sdk", "client"] }
|
||||
|
@@ -16,15 +16,15 @@ tracing = "0.1.37"
|
||||
# Error management
|
||||
thiserror = "1.0.38"
|
||||
anyhow = "1.0.69"
|
||||
sentry = { version = "0.29.3", default-features = false }
|
||||
sentry = { version = "0.30.0", default-features = false }
|
||||
|
||||
# Web server
|
||||
hyper = { version = "0.14.24", features = ["full"] }
|
||||
tower = "0.4.13"
|
||||
tower-http = { version = "0.3.5", features = ["cors"] }
|
||||
axum = "0.6.8"
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
axum = "0.6.9"
|
||||
axum-macros = "0.3.4"
|
||||
axum-extra = { version = "0.5.0", features = ["cookie-private"] }
|
||||
axum-extra = { version = "0.6.0", features = ["cookie-private"] }
|
||||
|
||||
async-graphql = { version = "5.0.6", features = ["tracing", "apollo_tracing"] }
|
||||
|
||||
@@ -49,7 +49,7 @@ zeroize = "1.5.7"
|
||||
# Various data types and utilities
|
||||
camino = "1.1.3"
|
||||
chrono = { version = "0.4.23", features = ["serde"] }
|
||||
time = "0.3.19"
|
||||
time = "0.3.20"
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
mime = "0.3.16"
|
||||
rand = "0.8.5"
|
||||
|
@@ -6,9 +6,9 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
aws-smithy-http = { version = "0.54.3", optional = true }
|
||||
aws-smithy-http = { version = "0.54.4", optional = true }
|
||||
aws-types = { version = "0.54.1", optional = true }
|
||||
axum = { version = "0.6.8", optional = true }
|
||||
axum = { version = "0.6.9", optional = true }
|
||||
bytes = "1.4.0"
|
||||
futures-util = "0.3.26"
|
||||
headers = "0.3.8"
|
||||
@@ -28,7 +28,7 @@ serde_urlencoded = "0.7.1"
|
||||
thiserror = "1.0.38"
|
||||
tokio = { version = "1.25.0", features = ["sync", "parking_lot"], optional = true }
|
||||
tower = { version = "0.4.13", features = [] }
|
||||
tower-http = { version = "0.3.5", features = ["cors"] }
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
tracing = "0.1.37"
|
||||
tracing-opentelemetry = "0.18.0"
|
||||
webpki = { version = "0.22.0", optional = true }
|
||||
|
@@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.152", optional = true }
|
||||
schemars = { version = "0.8.11", default-features = false, optional = true }
|
||||
schemars = { version = "0.8.12", default-features = false, optional = true }
|
||||
|
||||
[features]
|
||||
default = ["serde", "schemars"]
|
||||
|
@@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
base64ct = { version = "1.5.3", features = ["std"] }
|
||||
base64ct = { version = "1.6.0", features = ["std"] }
|
||||
chrono = { version = "0.4.23", features = ["serde"] }
|
||||
digest = "0.10.6"
|
||||
ecdsa = { version = "0.15.1", features = ["signing", "verifying"] }
|
||||
@@ -18,7 +18,7 @@ p256 = { version = "0.12.0", features = ["ecdsa"] }
|
||||
p384 = { version = "0.12.0", features = ["ecdsa"] }
|
||||
rand = "0.8.5"
|
||||
rsa = "0.8.1"
|
||||
schemars = "0.8.11"
|
||||
schemars = "0.8.12"
|
||||
sec1 = "0.3.0"
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_json = "1.0.93"
|
||||
|
@@ -8,7 +8,7 @@ license = "Apache-2.0"
|
||||
[dependencies]
|
||||
anyhow = "1.0.69"
|
||||
aead = { version = "0.5.1", features = ["std"] }
|
||||
const-oid = { version = "0.9.1", features = ["std"] }
|
||||
const-oid = { version = "0.9.2", features = ["std"] }
|
||||
cookie = { version = "0.17.0", features = ["key-expansion", "private"] }
|
||||
der = { version = "0.6.1", features = ["std"] }
|
||||
ecdsa = { version = "0.15.1", features = ["std"] }
|
||||
@@ -26,7 +26,7 @@ spki = { version = "0.6.0", features = ["std"] }
|
||||
thiserror = "1.0.38"
|
||||
generic-array = "0.14.6"
|
||||
chacha20poly1305 = { version = "0.10.1", features = ["std"] }
|
||||
base64ct = "1.5.3"
|
||||
base64ct = "1.6.0"
|
||||
|
||||
mas-iana = { path = "../iana" }
|
||||
mas-jose = { path = "../jose" }
|
||||
|
@@ -14,7 +14,7 @@ pin-project-lite = "0.2.9"
|
||||
thiserror = "1.0.38"
|
||||
tokio = { version = "1.25.0", features = ["net", "rt", "macros", "signal", "time"] }
|
||||
tokio-rustls = "0.23.4"
|
||||
tower-http = { version = "0.3.5", features = ["add-extension"] }
|
||||
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
||||
tower-service = "0.3.2"
|
||||
tracing = "0.1.37"
|
||||
libc = "0.2.139"
|
||||
|
@@ -18,7 +18,7 @@ hyper = [
|
||||
keystore = ["dep:mas-keystore"]
|
||||
|
||||
[dependencies]
|
||||
base64ct = { version = "1.5.3", features = ["std"] }
|
||||
base64ct = { version = "1.6.0", features = ["std"] }
|
||||
bytes = "1.4.0"
|
||||
chrono = "0.4.23"
|
||||
form_urlencoded = "1.1.0"
|
||||
@@ -59,7 +59,7 @@ version = "0.14.24"
|
||||
features = ["client", "http1", "http2", "stream", "runtime" ]
|
||||
optional = true
|
||||
[dependencies.tower-http]
|
||||
version = "0.3.5"
|
||||
version = "0.4.0"
|
||||
features = ["follow-redirect", "decompression-full", "set-header", "timeout"]
|
||||
optional = true
|
||||
|
||||
|
@@ -13,7 +13,7 @@ serde_json = "1.0.93"
|
||||
thiserror = "1.0.38"
|
||||
tokio = { version = "1.25.0", features = ["io-util"] }
|
||||
tracing = "0.1.37"
|
||||
wasmtime = { version = "5.0.0", default-features = false, features = ["async", "cranelift"] }
|
||||
wasmtime = { version = "6.0.0", default-features = false, features = ["async", "cranelift"] }
|
||||
|
||||
mas-data-model = { path = "../data-model" }
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
|
@@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.6.8", default-features = false }
|
||||
axum = { version = "0.6.9", default-features = false }
|
||||
serde = { version = "1.0.152", features = ["derive"] }
|
||||
serde_urlencoded = "0.7.1"
|
||||
url = "2.3.1"
|
||||
|
@@ -13,7 +13,7 @@ camino = { version = "1.1.3", features = ["serde1"] }
|
||||
headers = "0.3.8"
|
||||
http = "0.2.9"
|
||||
tower-service = "0.3.2"
|
||||
tower-http = { version = "0.3.5", features = ["fs"] }
|
||||
tower-http = { version = "0.4.0", features = ["fs"] }
|
||||
tokio = { version = "1.25.0", features = ["fs"] }
|
||||
|
||||
[[bin]]
|
||||
|
Reference in New Issue
Block a user