diff --git a/Cargo.lock b/Cargo.lock index f45d135..5ce4e1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1940,9 +1940,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", @@ -1958,9 +1958,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/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index f754bf6..63bc460 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -9,4 +9,4 @@ reqlang = { path = "../reqlang" } [dev-dependencies] pretty_assertions = "1.1.0" rstest = "0.19.0" -tokio = { version = "1.17.0", features = ["macros"] } +tokio = { version = "1.43.1", features = ["macros"] } diff --git a/reqlang-lsp/Cargo.toml b/reqlang-lsp/Cargo.toml index 88db94f..bdde116 100644 --- a/reqlang-lsp/Cargo.toml +++ b/reqlang-lsp/Cargo.toml @@ -11,7 +11,7 @@ authors = ["Kylee Tilley "] [dependencies] tower-lsp = { version = "0.19.0" } anyhow = "1.0.52" -tokio = { version = "1.17.0", features = ["full"] } +tokio = { version = "1.43.1", features = ["full"] } reqlang = { path = "../reqlang" } serde = { version = "1" } serde_json = "1.0" diff --git a/reqlang/Cargo.toml b/reqlang/Cargo.toml index 35ff10b..90eb427 100644 --- a/reqlang/Cargo.toml +++ b/reqlang/Cargo.toml @@ -15,7 +15,7 @@ regex = "1.10.3" syn = "2.0" quote = "1.0" reqwest = { version = "0.12", features = ["json"] } -tokio = { version = "1.17.0", features = ["macros"] } +tokio = { version = "1.43.1", features = ["macros"] } similar = { version = "2.7.0" } console = "0.15.10" ts-rs = "10.0"