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

Bump dependencies

This commit is contained in:
Quentin Gliech
2022-02-04 10:18:01 +01:00
parent e4277180e5
commit 26a340d5dc
11 changed files with 101 additions and 92 deletions

View File

@@ -9,7 +9,7 @@ license = "Apache-2.0"
tokio = { version = "1.16.1", features = ["full"] }
futures = "0.3.19"
anyhow = { version = "1.0.53", features = ["backtrace"] }
clap = { version = "3.0.13", features = ["derive"] }
clap = { version = "3.0.14", features = ["derive"] }
dotenv = "0.15.0"
schemars = { version = "0.8.8", features = ["url", "chrono"] }
tower = { version = "0.4.11", features = ["full"] }
@@ -23,16 +23,16 @@ reqwest = { version = "0.11.9", features = ["rustls-tls"], default-features = fa
watchman_client = "0.7.1"
atty = "0.2.14"
tracing = "0.1.29"
tracing = "0.1.30"
tracing-appender = "0.2.0"
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
tracing-opentelemetry = "0.16.0"
opentelemetry = { version = "0.16.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-http = "0.5.0"
opentelemetry-semantic-conventions = "0.8.0"
opentelemetry-jaeger = { version = "0.15.0", features = ["rt-tokio", "reqwest_collector_client"], optional = true }
opentelemetry-otlp = { version = "0.9.0", features = ["trace", "metrics"], optional = true }
opentelemetry-zipkin = { version = "0.14.0", features = ["reqwest-client", "reqwest-rustls"], default-features = false, optional = true }
tracing-opentelemetry = "0.17.0"
opentelemetry = { version = "0.17.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-http = "0.6.0"
opentelemetry-semantic-conventions = "0.9.0"
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio", "reqwest_collector_client"], optional = true }
opentelemetry-otlp = { version = "0.10.0", features = ["trace", "metrics"], optional = true }
opentelemetry-zipkin = { version = "0.15.0", features = ["reqwest-client", "reqwest-rustls"], default-features = false, optional = true }
mas-config = { path = "../config" }
mas-handlers = { path = "../handlers" }

View File

@@ -206,9 +206,7 @@ fn otlp_meter(_endpoint: &Option<url::Url>) -> anyhow::Result<()> {
}
fn stdout_meter() {
sdk::export::metrics::stdout(tokio::spawn, interval)
.with_pretty_print(true)
.init();
sdk::export::metrics::stdout(tokio::spawn, interval).init();
}
fn meter(config: &MetricsExporterConfig) -> anyhow::Result<()> {

View File

@@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
tokio = { version = "1.16.1", features = [] }
tracing = { version = "0.1.29", features = ["log"] }
tracing = { version = "0.1.30", features = ["log"] }
async-trait = "0.1.52"
thiserror = "1.0.30"

View File

@@ -12,7 +12,7 @@ tokio = { version = "1.16.1", features = ["macros"] }
mas-templates = { path = "../templates" }
mas-config = { path = "../config" }
tracing = "0.1.29"
tracing = "0.1.30"
aws-sdk-sesv2 = "0.6.0"
aws-config = "0.6.0"

View File

@@ -13,7 +13,7 @@ dev = ["mas-static-files/dev", "mas-templates/dev"]
tokio = { version = "1.16.1", features = ["macros"] }
# Logging and tracing
tracing = "0.1.29"
tracing = "0.1.30"
# Error management
thiserror = "1.0.30"

View File

@@ -14,5 +14,5 @@ futures-util = "0.3.19"
reqwest = { version = "0.11.9", features = ["blocking", "rustls-tls"], default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
tokio = { version = "1.16.1", features = ["full"] }
tracing = "0.1.29"
tracing = "0.1.30"
tracing-subscriber = "0.3.7"

View File

@@ -12,7 +12,7 @@ chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
anyhow = "1.0.53"
tracing = "0.1.29"
tracing = "0.1.30"
warp = "0.3.2"
# Password hashing

View File

@@ -10,7 +10,7 @@ tokio = "1.16.1"
async-trait = "0.1.52"
tokio-stream = "0.1.8"
futures-util = "0.3.19"
tracing = "0.1.29"
tracing = "0.1.30"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
mas-storage = { path = "../storage" }

View File

@@ -9,7 +9,7 @@ license = "Apache-2.0"
dev = []
[dependencies]
tracing = "0.1.29"
tracing = "0.1.30"
tokio = { version = "1.16.1", features = ["macros"] }
anyhow = "1.0.53"

View File

@@ -21,8 +21,8 @@ serde_json = "1.0.78"
serde_urlencoded = "0.7.1"
data-encoding = "2.3.2"
once_cell = "1.9.0"
tracing = "0.1.29"
opentelemetry = "0.16.0"
tracing = "0.1.30"
opentelemetry = "0.17.0"
rand = "0.8.4"
mime = "0.3.16"
bincode = "1.3.3"