-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use kvs 'cli' for default binary on cargo run
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
target | ||
*.log | ||
*.index |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
[workspace.package] | ||
name = "kvstore" | ||
authors = ["Abhishek Shah <[email protected]>"] | ||
description = "A key-value store called kvs" | ||
edition = "2021" | ||
name = "kvstore" | ||
# licenses = ["MIT"] | ||
version = "1.2.0" | ||
|
||
[package] | ||
authors.workspace = true | ||
description = "A key-value store called kvs" | ||
# licenses.workspace = true | ||
edition = {workspace = true} | ||
name = "kvs" | ||
edition = { workspace = true } | ||
version = { workspace = true } | ||
version = {workspace = true} | ||
default-run = "kvs" | ||
|
||
[[bin]] | ||
description = "kvs cli to interact with kvs library" | ||
|
@@ -37,21 +38,21 @@ test = false | |
members = ["crates/kvs-client", "crates/kvs-server"] | ||
|
||
[dependencies] | ||
clap = { version = "4.1.6", features = ["derive"] } | ||
clap = {version = "4.1.6", features = ["derive"]} | ||
dotenv = "0.15.0" | ||
env_logger = "0.10.0" | ||
lazy_static = "1.4.0" | ||
log = "0.4.20" | ||
ron = "0.8.1" | ||
serde = { version = "1.0.188", features = ["derive"] } | ||
serde = {version = "1.0.188", features = ["derive"]} | ||
serde_json = "1.0.104" | ||
thiserror = "1.0.38" | ||
|
||
[workspace.dependencies] | ||
kvs = { path = "." } | ||
clap = { version = "4.1.6", features = ["derive"] } | ||
clap = {version = "4.1.6", features = ["derive"]} | ||
dotenv = "0.15.0" | ||
env_logger = "0.10.0" | ||
kvs = {path = "."} | ||
lazy_static = "1.4.0" | ||
log = "0.4.20" | ||
ron = "0.8.1" | ||
|