diff options
author | Alex <alex@adnab.me> | 2022-07-04 18:27:25 +0200 |
---|---|---|
committer | Alex <alex@adnab.me> | 2022-07-04 18:27:25 +0200 |
commit | fe3fa83de74b79ffeeb2042c58b9360defa65431 (patch) | |
tree | ad8a36c9c72147df6d6cf7839f304d96464ce280 /src/k2v-client/Cargo.toml | |
parent | b6d59ec19a3d41ce581716cf0dda5d47c2785843 (diff) | |
download | garage-fe3fa83de74b79ffeeb2042c58b9360defa65431.tar.gz garage-fe3fa83de74b79ffeeb2042c58b9360defa65431.zip |
Publish k2v-client crate to crates.io (#337)
Co-authored-by: Alex Auvolat <alex@adnab.me>
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/337
Co-authored-by: Alex <alex@adnab.me>
Co-committed-by: Alex <alex@adnab.me>
Diffstat (limited to 'src/k2v-client/Cargo.toml')
-rw-r--r-- | src/k2v-client/Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/k2v-client/Cargo.toml b/src/k2v-client/Cargo.toml index 224414ab..2f8a2679 100644 --- a/src/k2v-client/Cargo.toml +++ b/src/k2v-client/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "k2v-client" -version = "0.1.0" +version = "0.0.1" +authors = ["Trinity Pointard <trinity.pointard@gmail.com>", "Alex Auvolat <alex@adnab.me>"] edition = "2018" +license = "AGPL-3.0" +description = "Client library for the Garage K2V protocol" +repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage" +readme = "../../README.md" [dependencies] base64 = "0.13.0" @@ -17,7 +22,7 @@ tokio = "1.17.0" # cli deps clap = { version = "3.1.18", optional = true, features = ["derive", "env"] } -garage_util = { path = "../util", optional = true } +garage_util = { version = "0.7.0", path = "../util", optional = true } [features] |