From 7041dd6ce38e65ecfe495c8c5ad03877d20745f1 Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Sat, 3 Sep 2022 19:53:32 +0530 Subject: [PATCH] Upgrade deps --- Cargo.lock | 12 ++++++------ cli/Cargo.toml | 2 +- server/Cargo.toml | 4 ++-- sky-bench/Cargo.toml | 2 +- stress-test/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 660135a7..f39faf54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1205,9 +1205,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.83" +version = "1.0.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38dd04e3c8279e75b31ef29dbdceebfe5ad89f4d0937213c53f7d49d01b3d5a7" +checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" dependencies = [ "itoa", "ryu", @@ -1439,9 +1439,9 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.25.3" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71eb43e528fdc239f08717ec2a378fdb017dddbc3412de15fff527554591a66c" +checksum = "621609553b14bca49448b3c97e625d7187980cc2a42fd169b4c3b306dcc4a7e9" dependencies = [ "cfg-if", "core-foundation-sys", @@ -1521,9 +1521,9 @@ checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792" [[package]] name = "tokio" -version = "1.20.1" +version = "1.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8325f63a7d4774dd041e363b2409ed1c5cbbd0f867795e661df066b2b0a581" +checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42" dependencies = [ "autocfg", "bytes", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cffa43ed..d042cec9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -14,7 +14,7 @@ skytable = { git = "https://github.com/skytable/client-rust", branch = "next", f "aio-sslv", ], default-features = false } # external deps -tokio = { version = "1.20.1", features = ["full"] } +tokio = { version = "1.21.0", features = ["full"] } clap = { version = "2", features = ["yaml"] } rustyline = "10.0.0" crossterm = "0.25.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index 2086fb24..b40f218b 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -22,7 +22,7 @@ openssl = { version = "0.10.41", features = ["vendored"] } parking_lot = "0.12.1" regex = "1.6.0" serde = { version = "1.0.144", features = ["derive"] } -tokio = { version = "1.20.1", features = ["full"] } +tokio = { version = "1.21.0", features = ["full"] } tokio-openssl = "0.6.3" toml = "0.5.9" base64 = "0.13.0" @@ -52,7 +52,7 @@ skytable = { git = "https://github.com/skytable/client-rust", features = [ # external deps bincode = "1.3.3" rand = "0.8.5" -tokio = { version = "1.20.1", features = ["test-util"] } +tokio = { version = "1.21.0", features = ["test-util"] } [features] nightly = [] diff --git a/sky-bench/Cargo.toml b/sky-bench/Cargo.toml index 81983301..bebf9941 100644 --- a/sky-bench/Cargo.toml +++ b/sky-bench/Cargo.toml @@ -19,5 +19,5 @@ log = "0.4.17" env_logger = "0.9.0" devtimer = "4.0.1" serde = { version = "1.0.144", features = ["derive"] } -serde_json = "1.0.83" +serde_json = "1.0.85" rand = "0.8.5" diff --git a/stress-test/Cargo.toml b/stress-test/Cargo.toml index 7d5ede51..6f97a245 100644 --- a/stress-test/Cargo.toml +++ b/stress-test/Cargo.toml @@ -14,7 +14,7 @@ skytable = { git = "https://github.com/skytable/client-rust.git", branch = "next ] } devtimer = "4.0.1" # external deps -sysinfo = "0.25.3" +sysinfo = "0.26.1" env_logger = "0.9.0" log = "0.4.17" rand = "0.8.5"