From d02e51bc6d21f832f6cb27964ee48b70a2d47e7b Mon Sep 17 00:00:00 2001 From: Gyubong Lee Date: Sun, 13 Oct 2024 04:05:53 +0000 Subject: [PATCH] chore: Update dependencies --- Cargo.lock | 1 - examples/memstore/Cargo.toml | 2 +- examples/memstore/dynamic-members/Cargo.toml | 2 +- examples/memstore/static-members/Cargo.toml | 2 +- harness/Cargo.toml | 2 +- raftify-cli/Cargo.lock | 1 - raftify-cli/Cargo.toml | 1 - raftify-cli/src/commands/debug.rs | 2 +- raftify/Cargo.toml | 2 +- 9 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e1ba19d..704f9f32 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2313,7 +2313,6 @@ dependencies = [ "comfy-table", "log", "raftify", - "rocksdb", "serde", "serde_json", "slog", diff --git a/examples/memstore/Cargo.toml b/examples/memstore/Cargo.toml index ae72f7c7..7ed45d3d 100644 --- a/examples/memstore/Cargo.toml +++ b/examples/memstore/Cargo.toml @@ -19,7 +19,7 @@ path = "src/client/main.rs" [dependencies] actix-rt = "2.10" actix-web = "4.9.0" -async-trait = "0.1.82" +async-trait = "0.1.83" bincode = "1.3" log = { version = "0.4", features = ["std"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/memstore/dynamic-members/Cargo.toml b/examples/memstore/dynamic-members/Cargo.toml index d71371c1..32125e55 100644 --- a/examples/memstore/dynamic-members/Cargo.toml +++ b/examples/memstore/dynamic-members/Cargo.toml @@ -15,7 +15,7 @@ memstore-example-harness.workspace = true actix-rt = "2.10" actix-web = "4.9.0" -async-trait = "0.1.82" +async-trait = "0.1.83" bincode = "1.3" log = { version = "0.4", features = ["std"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/memstore/static-members/Cargo.toml b/examples/memstore/static-members/Cargo.toml index 98282929..b21fa8d1 100644 --- a/examples/memstore/static-members/Cargo.toml +++ b/examples/memstore/static-members/Cargo.toml @@ -15,7 +15,7 @@ memstore-example-harness.workspace = true actix-rt = "2.10" actix-web = "4.9.0" -async-trait = "0.1.82" +async-trait = "0.1.83" bincode = "1.3" log = { version = "0.4", features = ["std"] } serde = { version = "1.0", features = ["derive"] } diff --git a/harness/Cargo.toml b/harness/Cargo.toml index 03039795..779b525e 100644 --- a/harness/Cargo.toml +++ b/harness/Cargo.toml @@ -24,5 +24,5 @@ lazy_static = "1.5.0" fs2 = "0.4.3" sloggers = "2.2.0" tempfile = "3.13.0" -futures = "0.3.30" +futures = "0.3.31" once_cell = "1.20.2" diff --git a/raftify-cli/Cargo.lock b/raftify-cli/Cargo.lock index a3217964..e188616b 100644 --- a/raftify-cli/Cargo.lock +++ b/raftify-cli/Cargo.lock @@ -1636,7 +1636,6 @@ dependencies = [ "comfy-table", "log", "raftify", - "rocksdb", "serde", "serde_json", "slog", diff --git a/raftify-cli/Cargo.toml b/raftify-cli/Cargo.toml index 023127e8..a7423ed8 100644 --- a/raftify-cli/Cargo.toml +++ b/raftify-cli/Cargo.toml @@ -13,7 +13,6 @@ slog = "2" built = "0.5" clap = { version = "4.5.18", features = ["derive"] } raftify = { version = "=0.1.81", features = ["heed_storage", "inmemory_storage", "rocksdb_storage"] } -rocksdb = "0.19.0" comfy-table = "7.1.1" [lib] diff --git a/raftify-cli/src/commands/debug.rs b/raftify-cli/src/commands/debug.rs index 4799a3b2..199c6190 100644 --- a/raftify-cli/src/commands/debug.rs +++ b/raftify-cli/src/commands/debug.rs @@ -1,5 +1,5 @@ use comfy_table::{ - presets::UTF8_FULL, Cell, CellAlignment, ContentArrangement, Table, TableComponent, + presets::UTF8_FULL, Cell, CellAlignment, ContentArrangement, Table, }; use core::panic; use serde_json::Value; diff --git a/raftify/Cargo.toml b/raftify/Cargo.toml index 7fa4ef70..a52bc46c 100644 --- a/raftify/Cargo.toml +++ b/raftify/Cargo.toml @@ -10,7 +10,7 @@ keywords.workspace = true readme = "../README.md" [dependencies] -async-trait = "0.1.82" +async-trait = "0.1.83" bincode = "1.3" bytes = "1.7.2" log = { version = "0.4", features = ["std"] }