Update README.md to use renamed bins introduced on #44

This commit is contained in:
avinassh
2020-05-27 15:36:52 +05:30
committed by GitHub
parent 58e816e36e
commit e9c38ed030

View File

@@ -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