You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-31 09:24:31 +03:00
build(deps): bump tokio from 1.33.0 to 1.34.0
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.33.0 to 1.34.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.33.0...tokio-1.34.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
581db6db7a
commit
9802981c0e
8
Cargo.lock
generated
8
Cargo.lock
generated
@ -5810,9 +5810,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.33.0"
|
version = "1.34.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653"
|
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bytes",
|
"bytes",
|
||||||
@ -5839,9 +5839,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio-macros"
|
name = "tokio-macros"
|
||||||
version = "2.1.0"
|
version = "2.2.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
|
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -26,7 +26,7 @@ serde_with = "3.4.0"
|
|||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = "1.33.0"
|
tokio = "1.34.0"
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
@ -24,7 +24,7 @@ rustls = "0.21.8"
|
|||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_yaml = "0.9.25"
|
serde_yaml = "0.9.25"
|
||||||
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
tokio = { version = "1.33.0", features = ["full"] }
|
tokio = { version = "1.34.0", features = ["full"] }
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tower-http = { version = "0.4.4", features = ["fs"] }
|
tower-http = { version = "0.4.4", features = ["fs"] }
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
@ -8,7 +8,7 @@ homepage.workspace = true
|
|||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.33.0", features = ["fs", "rt"] }
|
tokio = { version = "1.34.0", features = ["fs", "rt"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
async-trait = "0.1.74"
|
async-trait = "0.1.74"
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ chrono.workspace = true
|
|||||||
lettre = { version = "0.11.1", default-features = false }
|
lettre = { version = "0.11.1", default-features = false }
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["sync"] }
|
tokio = { version = "1.34.0", features = ["sync"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
ulid.workspace = true
|
ulid.workspace = true
|
||||||
|
@ -9,7 +9,7 @@ repository.workspace = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# Async runtime
|
# Async runtime
|
||||||
tokio = { version = "1.33.0", features = ["macros"] }
|
tokio = { version = "1.34.0", features = ["macros"] }
|
||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
|
|
||||||
# Logging and tracing
|
# Logging and tracing
|
||||||
|
@ -24,7 +24,7 @@ serde.workspace = true
|
|||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["sync", "parking_lot"], optional = true }
|
tokio = { version = "1.34.0", features = ["sync", "parking_lot"], optional = true }
|
||||||
tower = { version = "0.4.13", features = [] }
|
tower = { version = "0.4.13", features = [] }
|
||||||
tower-http = { version = "0.4.4", features = ["cors"] }
|
tower-http = { version = "0.4.4", features = ["cors"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
@ -35,7 +35,7 @@ mas-tower = { path = "../tower" }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["macros", "rt"] }
|
tokio = { version = "1.34.0", features = ["macros", "rt"] }
|
||||||
tower = { version = "0.4.13", features = ["util"] }
|
tower = { version = "0.4.13", features = ["util"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -16,6 +16,6 @@ csv = "1.3.0"
|
|||||||
futures-util = "0.3.28"
|
futures-util = "0.3.28"
|
||||||
hyper = { version = "0.14.27", features = ["tcp", "client", "http1"] }
|
hyper = { version = "0.14.27", features = ["tcp", "client", "http1"] }
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber.workspace = true
|
||||||
|
@ -15,7 +15,7 @@ hyper = { version = "0.14.27", features = ["server", "http1", "http2", "tcp"] }
|
|||||||
pin-project-lite = "0.2.13"
|
pin-project-lite = "0.2.13"
|
||||||
socket2 = "0.5.5"
|
socket2 = "0.5.5"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["net", "rt", "macros", "signal", "time"] }
|
tokio = { version = "1.34.0", features = ["net", "rt", "macros", "signal", "time"] }
|
||||||
tokio-rustls = "0.24.1"
|
tokio-rustls = "0.24.1"
|
||||||
tower-http = { version = "0.4.4", features = ["add-extension"] }
|
tower-http = { version = "0.4.4", features = ["add-extension"] }
|
||||||
tower-service = "0.3.2"
|
tower-service = "0.3.2"
|
||||||
@ -25,7 +25,7 @@ libc = "0.2.150"
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
rustls-pemfile = "1.0.3"
|
rustls-pemfile = "1.0.3"
|
||||||
tokio = { version = "1.33.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
|
tokio = { version = "1.34.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
|
||||||
tokio-test = "0.4.3"
|
tokio-test = "0.4.3"
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber.workspace = true
|
||||||
|
|
||||||
|
@ -12,5 +12,5 @@ anyhow.workspace = true
|
|||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
async-trait = "0.1.74"
|
async-trait = "0.1.74"
|
||||||
http.workspace = true
|
http.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["sync", "macros", "rt"] }
|
tokio = { version = "1.34.0", features = ["sync", "macros", "rt"] }
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
@ -37,7 +37,7 @@ serde_json.workspace = true
|
|||||||
serde_urlencoded = "0.7.1"
|
serde_urlencoded = "0.7.1"
|
||||||
serde_with = "3.4.0"
|
serde_with = "3.4.0"
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["rt", "macros", "rt-multi-thread"] }
|
tokio = { version = "1.34.0", features = ["rt", "macros", "rt-multi-thread"] }
|
||||||
tower = { version = "0.4.13", features = ["full"] }
|
tower = { version = "0.4.13", features = ["full"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
url.workspace = true
|
url.workspace = true
|
||||||
|
@ -14,7 +14,7 @@ serde.workspace = true
|
|||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
schemars = {version = "0.8.15", optional = true }
|
schemars = {version = "0.8.15", optional = true }
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["io-util", "rt"] }
|
tokio = { version = "1.34.0", features = ["io-util", "rt"] }
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
wasmtime = { version = "14.0.1", default-features = false, features = ["async", "cranelift"] }
|
wasmtime = { version = "14.0.1", default-features = false, features = ["async", "cranelift"] }
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ mas-data-model = { path = "../data-model" }
|
|||||||
oauth2-types = { path = "../oauth2-types" }
|
oauth2-types = { path = "../oauth2-types" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.33.0", features = ["fs", "rt", "macros"] }
|
tokio = { version = "1.34.0", features = ["fs", "rt", "macros"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
cache = ["wasmtime/cache"]
|
cache = ["wasmtime/cache"]
|
||||||
|
@ -20,7 +20,7 @@ rand.workspace = true
|
|||||||
rand_chacha = "0.3.1"
|
rand_chacha = "0.3.1"
|
||||||
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
|
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
|
||||||
thiserror.workspace = true
|
thiserror.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["rt"] }
|
tokio = { version = "1.34.0", features = ["rt"] }
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
tracing-opentelemetry.workspace = true
|
tracing-opentelemetry.workspace = true
|
||||||
|
@ -10,7 +10,7 @@ repository.workspace = true
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
arc-swap = "1.6.0"
|
arc-swap = "1.6.0"
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
tokio = { version = "1.33.0", features = ["macros", "rt", "fs"] }
|
tokio = { version = "1.34.0", features = ["macros", "rt", "fs"] }
|
||||||
walkdir = "2.4.0"
|
walkdir = "2.4.0"
|
||||||
|
|
||||||
anyhow.workspace = true
|
anyhow.workspace = true
|
||||||
|
@ -12,7 +12,7 @@ http.workspace = true
|
|||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
tracing-opentelemetry.workspace = true
|
tracing-opentelemetry.workspace = true
|
||||||
tower = "0.4.13"
|
tower = "0.4.13"
|
||||||
tokio = { version = "1.33.0", features = ["time"] }
|
tokio = { version = "1.34.0", features = ["time"] }
|
||||||
opentelemetry.workspace = true
|
opentelemetry.workspace = true
|
||||||
opentelemetry-http = "0.10.0"
|
opentelemetry-http = "0.10.0"
|
||||||
opentelemetry-semantic-conventions.workspace = true
|
opentelemetry-semantic-conventions.workspace = true
|
||||||
|
Reference in New Issue
Block a user