forked from Deuxfleurs/garage
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "k2v-client"
|
|
version = "0.0.4"
|
|
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.workspace = true
|
|
sha2.workspace = true
|
|
hex.workspace = true
|
|
http.workspace = true
|
|
http-body-util.workspace = true
|
|
log.workspace = true
|
|
aws-sigv4.workspace = true
|
|
aws-sdk-config.workspace = true
|
|
percent-encoding.workspace = true
|
|
hyper = { workspace = true, default-features = false, features = ["http1", "http2"] }
|
|
hyper-util.workspace = true
|
|
hyper-rustls.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
|
|
# cli deps
|
|
clap = { workspace = true, optional = true }
|
|
format_table = { workspace = true, optional = true }
|
|
tracing = { workspace = true, optional = true }
|
|
tracing-subscriber = { workspace = true, optional = true }
|
|
|
|
|
|
[features]
|
|
cli = ["clap", "tokio/fs", "tokio/io-std", "tracing", "tracing-subscriber", "format_table"]
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[[bin]]
|
|
name = "k2v-cli"
|
|
path = "bin/k2v-cli.rs"
|
|
required-features = ["cli"]
|