diff --git a/Cargo.lock b/Cargo.lock index 8ebe1a0..ba3ca21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2742,9 +2742,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.23.0" +version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46" +checksum = "38a54aca0c15d014013256222ba0ebed095673f89345dd79119d912eb561b7a8" dependencies = [ "autocfg", "bytes", diff --git a/corr-lib/Cargo.toml b/corr-lib/Cargo.toml index e99243e..f474135 100644 --- a/corr-lib/Cargo.toml +++ b/corr-lib/Cargo.toml @@ -18,7 +18,7 @@ uuid = { version = "0.8.1", features = ["serde", "v4"] } futures = "0.3.17" futures-util = "*" tokio-tungstenite = { version = "0.17.2", features = ["native-tls"] } -tokio = { version = "1.23.0", features = ["full"] } +tokio = { version = "1.23.1", features = ["full"] } async-trait = "0.1.51" async-recursion = "0.3.2" nom = "7.0.0" diff --git a/corr/Cargo.toml b/corr/Cargo.toml index 16dee61..c781118 100644 --- a/corr/Cargo.toml +++ b/corr/Cargo.toml @@ -16,7 +16,7 @@ regex = "1.5.5" lazy_static = "1.4.0" uuid = { version = "0.8.1", features = ["serde", "v4"] } futures = "0.3.17" -tokio = { version = "1.18.2", features = ["full"] } +tokio = { version = "1.23.1", features = ["full"] } async-trait = "0.1.51" async-recursion = "0.3.2" corr-lib={path="../corr-lib"} diff --git a/playground/Cargo.toml b/playground/Cargo.toml index 87363c0..f5b1db5 100644 --- a/playground/Cargo.toml +++ b/playground/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Atmaram Naik "] edition = "2018" [dependencies] -tokio = { version = "1.4.0", features = ["full"] } +tokio = { version = "1.23.1", features = ["full"] } async-trait = "0.1.36" futures = "0.3.17" futures-util = "*"