You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
build(deps): bump tokio from 1.27.0 to 1.28.0
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.27.0 to 1.28.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.27.0...tokio-1.28.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
Quentin Gliech
parent
343a21e3bc
commit
fb06c69a8b
@ -23,7 +23,7 @@ serde_with = "2.3.2"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_json = "1.0.96"
|
||||
thiserror = "1.0.40"
|
||||
tokio = "1.27.0"
|
||||
tokio = "1.28.0"
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
tracing = "0.1.38"
|
||||
url = "2.3.1"
|
||||
|
@ -22,7 +22,7 @@ rustls = "0.21.0"
|
||||
serde_json = "1.0.96"
|
||||
serde_yaml = "0.9.21"
|
||||
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
tokio = { version = "1.27.0", features = ["full"] }
|
||||
tokio = { version = "1.28.0", features = ["full"] }
|
||||
tower = { version = "0.4.13", features = ["full"] }
|
||||
tower-http = { version = "0.4.0", features = ["fs", "compression-full"] }
|
||||
url = "2.3.1"
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.27.0", features = ["fs", "rt"] }
|
||||
tokio = { version = "1.28.0", features = ["fs", "rt"] }
|
||||
tracing = { version = "0.1.38" }
|
||||
async-trait = "0.1.68"
|
||||
|
||||
|
@ -12,7 +12,7 @@ async-trait = "0.1.51"
|
||||
chrono = "0.4.24"
|
||||
serde = { version = "1.0.160", features = ["derive"] }
|
||||
thiserror = "1.0.40"
|
||||
tokio = { version = "1.27.0", features = ["sync"] }
|
||||
tokio = { version = "1.28.0", features = ["sync"] }
|
||||
tracing = "0.1.38"
|
||||
ulid = "1.0.0"
|
||||
url = "2.3.1"
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
# Async runtime
|
||||
tokio = { version = "1.27.0", features = ["macros"] }
|
||||
tokio = { version = "1.28.0", features = ["macros"] }
|
||||
futures-util = "0.3.28"
|
||||
|
||||
# Logging and tracing
|
||||
|
@ -24,7 +24,7 @@ serde = "1.0.160"
|
||||
serde_json = "1.0.96"
|
||||
serde_urlencoded = "0.7.1"
|
||||
thiserror = "1.0.40"
|
||||
tokio = { version = "1.27.0", features = ["sync", "parking_lot"], optional = true }
|
||||
tokio = { version = "1.28.0", features = ["sync", "parking_lot"], optional = true }
|
||||
tower = { version = "0.4.13", features = [] }
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
tracing = "0.1.38"
|
||||
@ -37,7 +37,7 @@ mas-tower = { path = "../tower" }
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.70"
|
||||
serde = { version = "1.0.160", features = ["derive"] }
|
||||
tokio = { version = "1.27.0", features = ["macros", "rt"] }
|
||||
tokio = { version = "1.28.0", features = ["macros", "rt"] }
|
||||
tower = { version = "0.4.13", features = ["util"] }
|
||||
|
||||
[features]
|
||||
|
@ -14,6 +14,6 @@ csv = "1.2.1"
|
||||
futures-util = "0.3.28"
|
||||
hyper = { version = "0.14.16", features = ["tcp", "client", "http1"] }
|
||||
serde = { version = "1.0.160", features = ["derive"] }
|
||||
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
||||
tokio = { version = "1.28.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
||||
tracing = "0.1.38"
|
||||
tracing-subscriber = "0.3.17"
|
||||
|
@ -12,7 +12,7 @@ http-body = "0.4.5"
|
||||
hyper = { version = "0.14.26", features = ["server", "http1", "http2", "tcp"] }
|
||||
pin-project-lite = "0.2.9"
|
||||
thiserror = "1.0.40"
|
||||
tokio = { version = "1.27.0", features = ["net", "rt", "macros", "signal", "time"] }
|
||||
tokio = { version = "1.28.0", features = ["net", "rt", "macros", "signal", "time"] }
|
||||
tokio-rustls = "0.24.0"
|
||||
tower-http = { version = "0.4.0", features = ["add-extension"] }
|
||||
tower-service = "0.3.2"
|
||||
@ -22,7 +22,7 @@ libc = "0.2.142"
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0.70"
|
||||
rustls-pemfile = "1.0.2"
|
||||
tokio = { version = "1.27.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
|
||||
tokio = { version = "1.28.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
|
||||
tokio-test = "0.4.2"
|
||||
tracing-subscriber = "0.3.17"
|
||||
|
||||
|
@ -35,7 +35,7 @@ serde_json = "1.0.96"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_with = "2.3.2"
|
||||
thiserror = "1.0.40"
|
||||
tokio = { version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||
tokio = { version = "1.28.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||
tower = { version = "0.4.13", features = ["full"] }
|
||||
tracing = "0.1.38"
|
||||
url = { version = "2.3.1", features = ["serde"] }
|
||||
|
@ -11,7 +11,7 @@ opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
|
||||
serde = { version = "1.0.160", features = ["derive"] }
|
||||
serde_json = "1.0.96"
|
||||
thiserror = "1.0.40"
|
||||
tokio = { version = "1.27.0", features = ["io-util"] }
|
||||
tokio = { version = "1.28.0", features = ["io-util"] }
|
||||
tracing = "0.1.38"
|
||||
wasmtime = { version = "7.0.0", default-features = false, features = ["async", "cranelift"] }
|
||||
|
||||
@ -19,7 +19,7 @@ mas-data-model = { path = "../data-model" }
|
||||
oauth2-types = { path = "../oauth2-types" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.27.0", features = ["fs", "rt", "macros"] }
|
||||
tokio = { version = "1.28.0", features = ["fs", "rt", "macros"] }
|
||||
|
||||
[features]
|
||||
cache = ["wasmtime/cache"]
|
||||
|
@ -14,7 +14,7 @@ headers = "0.3.8"
|
||||
http = "0.2.9"
|
||||
tower-service = "0.3.2"
|
||||
tower-http = { version = "0.4.0", features = ["fs"] }
|
||||
tokio = { version = "1.27.0", features = ["fs"] }
|
||||
tokio = { version = "1.28.0", features = ["fs"] }
|
||||
|
||||
[[bin]]
|
||||
name = "render"
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
tracing = "0.1.38"
|
||||
tokio = { version = "1.27.0", features = ["macros", "rt"] }
|
||||
tokio = { version = "1.28.0", features = ["macros", "rt"] }
|
||||
|
||||
anyhow = "1.0.70"
|
||||
thiserror = "1.0.40"
|
||||
|
@ -11,7 +11,7 @@ http = "0.2.9"
|
||||
tracing = "0.1.38"
|
||||
tracing-opentelemetry = "0.19.0"
|
||||
tower = "0.4.13"
|
||||
tokio = { version = "1.27.0", features = ["time"] }
|
||||
tokio = { version = "1.28.0", features = ["time"] }
|
||||
opentelemetry = { version = "0.19.0", features = ["metrics"] }
|
||||
opentelemetry-http = "0.8.0"
|
||||
pin-project-lite = "0.2.9"
|
||||
|
Reference in New Issue
Block a user