Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Sep 27, 2024
1 parent 0416bec commit 2b57cdf
Show file tree
Hide file tree
Showing 14 changed files with 2,241 additions and 108 deletions.
46 changes: 17 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ default-members = [
"examples/memstore/dynamic-members",
"examples/memstore/static-members",
]
exclude = ["raft-rs"]
exclude = ["raft-rs", "raftify-cli"]

[workspace.package]
version = "0.1.69"
version = "0.1.78"
authors = ["Lablup Inc."]
edition = "2021"
description = "Experimental High level Raft framework"
Expand Down
5 changes: 3 additions & 2 deletions examples/memstore/src/cli/main.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use raftify::{cli::cli_handler, Result};
// use raftify::{cli::cli_handler, Result};
use raftify::Result;

use memstore_example_harness::state_machine::{HashStore, LogEntry, StorageType};

#[tokio::main]
async fn main() -> Result<()> {
cli_handler::<LogEntry, StorageType, HashStore>(None).await?;
// cli_handler::<LogEntry, StorageType, HashStore>(None).await?;

Ok(())
}
Loading

0 comments on commit 2b57cdf

Please sign in to comment.