diff options
author | Alex <alex@adnab.me> | 2023-05-16 20:20:31 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-05-16 20:20:31 +0000 |
commit | b66f247580dcfb733718949c35240500903a0802 (patch) | |
tree | c9664138a33fd046eae926de985ec3f4cd54b5d4 /src/k2v-client/Cargo.toml | |
parent | ea9b15f669703eb74e340599dd1fbc216bb38df8 (diff) | |
parent | 16f2a32bb78cdc0d9cee9806c04065af845d0dff (diff) | |
download | garage-b66f247580dcfb733718949c35240500903a0802.tar.gz garage-b66f247580dcfb733718949c35240500903a0802.zip |
Merge pull request 'fixes to K2V client' (#571) from k2v-client-fixes into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/571
Diffstat (limited to 'src/k2v-client/Cargo.toml')
-rw-r--r-- | src/k2v-client/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/k2v-client/Cargo.toml b/src/k2v-client/Cargo.toml index f49d3205..293ad8b7 100644 --- a/src/k2v-client/Cargo.toml +++ b/src/k2v-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "k2v-client" -version = "0.1.1" +version = "0.0.2" authors = ["Trinity Pointard <trinity.pointard@gmail.com>", "Alex Auvolat <alex@adnab.me>"] edition = "2018" license = "AGPL-3.0" @@ -24,10 +24,11 @@ tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi # cli deps clap = { version = "4.1", optional = true, features = ["derive", "env"] } garage_util = { workspace = true, optional = true } +garage_db = { workspace = true, optional = true } [features] -cli = ["clap", "tokio/fs", "tokio/io-std", "garage_util"] +cli = ["clap", "tokio/fs", "tokio/io-std", "garage_util", "garage_db/sled"] [lib] path = "lib.rs" |