diff --git a/Cargo.lock b/Cargo.lock index 3e2c88b..36822dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1650,9 +1650,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.21.2" +version = "1.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099" +checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3" dependencies = [ "autocfg", "bytes", diff --git a/src/cmd/scel/Cargo.toml b/src/cmd/scel/Cargo.toml index 06e10c7..38dde30 100644 --- a/src/cmd/scel/Cargo.toml +++ b/src/cmd/scel/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.21", features = ["full"] } +tokio = { version = "1.22", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = { version = "1.0.66" } diff --git a/src/lib/scel_api/Cargo.toml b/src/lib/scel_api/Cargo.toml index 7db7cb6..65c83cb 100644 --- a/src/lib/scel_api/Cargo.toml +++ b/src/lib/scel_api/Cargo.toml @@ -18,7 +18,7 @@ async-graphql = { version = "4.0.16", features = [ async-graphql-axum = { version = "4.0.16" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.88" -tokio = { version = "1.21", features = ["full"] } +tokio = { version = "1.22", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3" } anyhow = { version = "1.0.66" } diff --git a/src/lib/scel_core/Cargo.toml b/src/lib/scel_core/Cargo.toml index a3dc74b..c92effb 100644 --- a/src/lib/scel_core/Cargo.toml +++ b/src/lib/scel_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.21", features = ["full"] } +tokio = { version = "1.22", features = ["full"] } anyhow = { version = "*" } async-trait = { version = "0.1.58" } futures = "0.3.25"