diff --git a/Cargo.lock b/Cargo.lock index c138370..84323ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1828,9 +1828,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.42.0" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", @@ -1844,9 +1844,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/lib/borderlands-launcher/Cargo.toml b/lib/borderlands-launcher/Cargo.toml index 9defb18..318efa0 100644 --- a/lib/borderlands-launcher/Cargo.toml +++ b/lib/borderlands-launcher/Cargo.toml @@ -15,7 +15,7 @@ futures-util = { version = "0.3.31", default-features = false } prost = "0.13.4" reqwest = { version = "0.12.12", features = [ "gzip", "deflate", "stream" ], default-features = false } thiserror = "2.0.9" -tokio = { version = "1.42.0", default-features = false } +tokio = { version = "1.43.1", default-features = false } tokio-util = { version = "0.7.13", features = [ "io" ], default-features = false } # Optional @@ -23,7 +23,7 @@ anyhow = { version = "1.0.95", optional = true } prost-build = { version = "0.13.4", optional = true } [dev-dependencies] -tokio = { version = "1.42.0", features = ["macros"] } +tokio = { version = "1.43.1", features = ["macros"] } [features] default = ["rustls-tls"] diff --git a/lib/shift-orcz/Cargo.toml b/lib/shift-orcz/Cargo.toml index cf8d411..c9af7f2 100644 --- a/lib/shift-orcz/Cargo.toml +++ b/lib/shift-orcz/Cargo.toml @@ -11,10 +11,10 @@ reqwest = { version = "0.12.12", default-features = false } scraper = { version = "0.22.0", default-features = false } thiserror = "2.0.9" time = { version = "0.3.37", features = [ "parsing", "macros" ] } -tokio = { version = "1.42.0", features = [ "rt" ] } +tokio = { version = "1.43.1", features = [ "rt" ] } [dev-dependencies] -tokio = { version = "1.42.0", features = [ "macros" ] } +tokio = { version = "1.43.1", features = [ "macros" ] } [features] default = ["reqwest/rustls-tls"] diff --git a/shift-client-cli/Cargo.toml b/shift-client-cli/Cargo.toml index 5e3635f..5e76cda 100644 --- a/shift-client-cli/Cargo.toml +++ b/shift-client-cli/Cargo.toml @@ -13,4 +13,4 @@ anyhow = "1.0.95" reqwest = { version = "0.12.12", default-features = false } shift-client = { version = "0.0.0", path = "../shift-client" } shift-orcz = { version = "0.0.0", path = "../lib/shift-orcz" } -tokio = { version = "1.42.0", features = [ "time", "rt-multi-thread" ] } +tokio = { version = "1.43.1", features = [ "time", "rt-multi-thread" ] } diff --git a/shift-client/Cargo.toml b/shift-client/Cargo.toml index c31a711..1f288cd 100644 --- a/shift-client/Cargo.toml +++ b/shift-client/Cargo.toml @@ -11,10 +11,10 @@ scraper = { version = "0.22.0", default-features = false } serde = { version = "1.0.217", features = [ "derive" ] } serde_json = "1.0.134" thiserror = "2.0.9" -tokio = { version = "1.42.0", features = [ "time" ] } +tokio = { version = "1.43.1", features = [ "time" ] } [dev-dependencies] -tokio = { version = "1.42.0", features = [ "macros" ] } +tokio = { version = "1.43.1", features = [ "macros" ] } [features] default = [ "reqwest/rustls-tls" ]