diff --git a/Cargo.lock b/Cargo.lock index 3a30b87..ee16165 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2565,9 +2565,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.41.0" +version = "1.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145f3413504347a2be84393cc8a7d2fb4d863b375909ea59f2158261aa258bbb" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" dependencies = [ "backtrace", "bytes", diff --git a/glow-control-lib/Cargo.toml b/glow-control-lib/Cargo.toml index aa8a8ec..74129c3 100644 --- a/glow-control-lib/Cargo.toml +++ b/glow-control-lib/Cargo.toml @@ -16,7 +16,7 @@ categories = ["hardware-support", "api-bindings", "command-line-utilities"] [dependencies] anyhow = "1.0" reqwest = { version = "0.12", features = ["json"] } -tokio = { version = "1.41", features = ["full"] } +tokio = { version = "1.42", features = ["full"] } clap = { version = "4.5", features = ["derive"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/glow-control-website/Cargo.toml b/glow-control-website/Cargo.toml index 1f5f429..45d0210 100644 --- a/glow-control-website/Cargo.toml +++ b/glow-control-website/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.41", features = ["full"] } +tokio = { version = "1.42", features = ["full"] } mime_guess = "2.0" aws-sdk-s3 = "1.59" aws-config = "1.5" diff --git a/glow-control/Cargo.toml b/glow-control/Cargo.toml index c4b39e9..27110f2 100644 --- a/glow-control/Cargo.toml +++ b/glow-control/Cargo.toml @@ -15,7 +15,7 @@ categories = ["hardware-support", "api-bindings", "command-line-utilities"] [dependencies] anyhow = "1.0" -tokio = { version = "1.41", features = ["full"] } +tokio = { version = "1.42", features = ["full"] } clap = { version = "4.5", features = ["derive"] } env_logger = "0.11" glow-control-lib = { version = "0.6.0", path = "../glow-control-lib" }