From e9c38ed030d6dd1ecbcb96fe657d48467302323b Mon Sep 17 00:00:00 2001 From: avinassh Date: Wed, 27 May 2020 15:36:52 +0530 Subject: [PATCH] Update README.md to use renamed bins introduced on #44 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1536984..8724ef1 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ for interacting with the server. Start the server: ``` -RUST_LOG=debug cargo run --bin server +RUST_LOG=debug cargo run --bin mini-redis-server ``` The [`tracing`](https://github.com/tokio-rs/tracing) crate is used to provide structured logs. @@ -51,9 +51,9 @@ Additionally, a CLI client is provided to run arbitrary commands from the terminal. With the server running, the following works: ``` -cargo run --bin cli set foo bar +cargo run --bin mini-redis-cli set foo bar -cargo run --bin cli get foo +cargo run --bin mini-redis-cli get foo ``` ## Supported commands