diff --git a/Cargo.lock b/Cargo.lock index dc33165..7a01b9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -1934,9 +1934,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.43.0" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", diff --git a/client/Cargo.toml b/client/Cargo.toml index 564940d..d46ad37 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1.36", features = ["full"] } +tokio = { version = "1.43", features = ["full"] } reqwest = { version = "0.12", features = ["json"] } base64 = "0.22" http = "1.2" diff --git a/server/Cargo.toml b/server/Cargo.toml index 51b68e1..5514e0f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1.36", features = ["full"] } +tokio = { version = "1.43", features = ["full"] } warp = { version = "0.3", features = ["compression", "tls"] } reqwest = { version = "0.12.12", default-features = false, features = ["blocking", "json"] } base64 = "0.22.1"