diff --git a/Cargo.lock b/Cargo.lock index 30e73786..d15f1f72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5217,9 +5217,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.22.0" +version = "1.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" +checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46" dependencies = [ "autocfg", "bytes 1.3.0", @@ -5232,7 +5232,7 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "winapi", + "windows-sys 0.42.0", ] [[package]] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index 83d007dc..5b7940fc 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -23,7 +23,7 @@ serde_urlencoded = "0.7.1" serde_json = "1.0.89" sqlx = "0.6.2" thiserror = "1.0.37" -tokio = "1.22.0" +tokio = "1.23.0" tower = { version = "0.4.13", features = ["util"] } tracing = "0.1.37" url = "2.3.1" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 9875a38a..ef5c443c 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -22,7 +22,7 @@ rand_chacha = "0.3.1" rustls = "0.20.7" serde_json = "1.0.89" serde_yaml = "0.9.14" -tokio = { version = "1.22.0", features = ["full"] } +tokio = { version = "1.23.0", features = ["full"] } tower = { version = "0.4.13", features = ["full"] } tower-http = { version = "0.3.5", features = ["fs", "compression-full"] } url = "2.3.1" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index a1c25b4c..bde30da7 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = { version = "1.22.0", features = [] } +tokio = { version = "1.23.0", features = [] } tracing = { version = "0.1.37", features = ["log"] } async-trait = "0.1.59" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 36698ad0..8fc13dfe 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.66" async-trait = "0.1.59" -tokio = { version = "1.22.0", features = ["macros"] } +tokio = { version = "1.23.0", features = ["macros"] } tracing = "0.1.37" aws-sdk-sesv2 = { version = "0.21.0", default-features = false } diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index cb842bd1..be755d79 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -11,7 +11,7 @@ chrono = "0.4.23" serde = { version = "1.0.149", features = ["derive"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } thiserror = "1.0.37" -tokio = { version = "1.22.0", features = ["time"] } +tokio = { version = "1.23.0", features = ["time"] } tracing = "0.1.37" ulid = "1.0.0" url = "2.3.1" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index bf7876ad..1692c388 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] # Async runtime -tokio = { version = "1.22.0", features = ["macros"] } +tokio = { version = "1.23.0", features = ["macros"] } futures-util = "0.3.25" # Logging and tracing diff --git a/crates/http/Cargo.toml b/crates/http/Cargo.toml index a2aecf6d..383953e8 100644 --- a/crates/http/Cargo.toml +++ b/crates/http/Cargo.toml @@ -26,7 +26,7 @@ serde = "1.0.149" serde_json = "1.0.89" serde_urlencoded = "0.7.1" thiserror = "1.0.37" -tokio = { version = "1.22.0", features = ["sync", "parking_lot"], optional = true } +tokio = { version = "1.23.0", features = ["sync", "parking_lot"], optional = true } tower = { version = "0.4.13", features = [] } tower-http = { version = "0.3.5", features = ["cors"] } tracing = "0.1.37" @@ -37,7 +37,7 @@ webpki-roots = { version = "0.22.5", optional = true } [dev-dependencies] anyhow = "1.0.66" serde = { version = "1.0.149", features = ["derive"] } -tokio = { version = "1.22.0", features = ["macros", "rt"] } +tokio = { version = "1.23.0", features = ["macros", "rt"] } tower = { version = "0.4.13", features = ["util"] } [features] diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index c6616909..c369f412 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -14,6 +14,6 @@ csv = "1.1.6" futures-util = "0.3.25" reqwest = { version = "0.11.13", features = ["blocking", "rustls-tls"], default-features = false } serde = { version = "1.0.149", features = ["derive"] } -tokio = { version = "1.22.0", features = ["full"] } +tokio = { version = "1.23.0", features = ["full"] } tracing = "0.1.37" tracing-subscriber = "0.3.16" diff --git a/crates/listener/Cargo.toml b/crates/listener/Cargo.toml index 59ef5bea..eead57c3 100644 --- a/crates/listener/Cargo.toml +++ b/crates/listener/Cargo.toml @@ -12,7 +12,7 @@ http-body = "0.4.5" hyper = { version = "0.14.23", features = ["server", "http1", "http2", "tcp"] } pin-project-lite = "0.2.9" thiserror = "1.0.37" -tokio = { version = "1.22.0", features = ["net", "rt", "macros", "signal", "time"] } +tokio = { version = "1.23.0", features = ["net", "rt", "macros", "signal", "time"] } tokio-rustls = "0.23.4" tower-http = { version = "0.3.5", features = ["add-extension"] } tower-service = "0.3.2" @@ -22,7 +22,7 @@ libc = "0.2.138" [dev-dependencies] anyhow = "1.0.66" rustls-pemfile = "1.0.1" -tokio = { version = "1.22.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } +tokio = { version = "1.23.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] } tokio-test = "0.4.2" tracing-subscriber = "0.3.16" diff --git a/crates/oidc-client/Cargo.toml b/crates/oidc-client/Cargo.toml index 25276443..34c4af0e 100644 --- a/crates/oidc-client/Cargo.toml +++ b/crates/oidc-client/Cargo.toml @@ -35,7 +35,7 @@ serde_json = "1.0.89" serde_urlencoded = "0.7.1" serde_with = "2.1.0" thiserror = "1.0.37" -tokio = { version = "1.22.0", features = ["rt", "macros", "rt-multi-thread"] } +tokio = { version = "1.23.0", features = ["rt", "macros", "rt-multi-thread"] } tower = { version = "0.4.13", features = ["full"] } tracing = "0.1.37" url = { version = "2.3.1", features = ["serde"] } diff --git a/crates/policy/Cargo.toml b/crates/policy/Cargo.toml index b5a5cb14..82bc4e3b 100644 --- a/crates/policy/Cargo.toml +++ b/crates/policy/Cargo.toml @@ -11,7 +11,7 @@ opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" } serde = { version = "1.0.149", features = ["derive"] } serde_json = "1.0.89" thiserror = "1.0.37" -tokio = { version = "1.22.0", features = ["io-util"] } +tokio = { version = "1.23.0", features = ["io-util"] } tracing = "0.1.37" wasmtime = { version = "2.0.2", 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.22.0", features = ["fs", "rt", "macros"] } +tokio = { version = "1.23.0", features = ["fs", "rt", "macros"] } [features] cache = ["wasmtime/cache"] diff --git a/crates/spa/Cargo.toml b/crates/spa/Cargo.toml index 33be184a..7badd3df 100644 --- a/crates/spa/Cargo.toml +++ b/crates/spa/Cargo.toml @@ -14,7 +14,7 @@ headers = "0.3.8" http = "0.2.8" tower-service = "0.3.2" tower-http = { version = "0.3.5", features = ["fs"] } -tokio = { version = "1.22.0", features = ["fs"] } +tokio = { version = "1.23.0", features = ["fs"] } [[bin]] name = "render" diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 6f1024ab..8a6f58aa 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = "1.22.0" +tokio = "1.23.0" sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] } chrono = { version = "0.4.23", features = ["serde"] } serde = { version = "1.0.149", features = ["derive"] } diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 41532389..a1f918a8 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -tokio = "1.22.0" +tokio = "1.23.0" async-trait = "0.1.59" tokio-stream = "0.1.11" futures-util = "0.3.25" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 32e8708a..d3884011 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] tracing = "0.1.37" -tokio = { version = "1.22.0", features = ["macros", "rt"] } +tokio = { version = "1.23.0", features = ["macros", "rt"] } anyhow = "1.0.66" thiserror = "1.0.37"