diff --git a/Cargo.lock b/Cargo.lock index 5e1ba19..704f9f3 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 ae72f7c..7ed45d3 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 d71371c..32125e5 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 9828292..b21fa8d 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 0303979..779b525 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 a321796..e188616 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 023127e..a7423ed 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 4799a3b..199c619 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 7fa4ef7..a52bc46 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"] }