2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_util"
|
2024-01-16 15:28:17 +00:00
|
|
|
version = "0.9.1"
|
2020-04-24 10:10:01 +00:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
edition = "2018"
|
2021-03-18 20:59:17 +00:00
|
|
|
license = "AGPL-3.0"
|
2020-07-07 12:14:58 +00:00
|
|
|
description = "Utility crate for the Garage object store"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2021-11-09 11:24:04 +00:00
|
|
|
readme = "../../README.md"
|
2020-04-24 10:10:01 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_db.workspace = true
|
2022-06-08 08:01:44 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
arc-swap.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
blake2.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
bytesize.workspace = true
|
|
|
|
digest.workspace = true
|
|
|
|
err-derive.workspace = true
|
|
|
|
hexdump.workspace = true
|
|
|
|
xxhash-rust.workspace = true
|
|
|
|
hex.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
sha2.workspace = true
|
|
|
|
|
|
|
|
chrono.workspace = true
|
|
|
|
rmp-serde.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
toml.workspace = true
|
|
|
|
|
|
|
|
futures.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
|
|
|
|
netapp.workspace = true
|
|
|
|
|
|
|
|
http.workspace = true
|
|
|
|
hyper.workspace = true
|
|
|
|
|
|
|
|
opentelemetry.workspace = true
|
2022-05-10 11:16:57 +00:00
|
|
|
|
2023-03-10 11:40:58 +00:00
|
|
|
[build-dependencies]
|
2024-02-05 12:02:02 +00:00
|
|
|
rustc_version.workspace = true
|
2023-03-10 11:40:58 +00:00
|
|
|
|
2023-01-07 12:49:15 +00:00
|
|
|
[dev-dependencies]
|
2024-02-05 12:02:02 +00:00
|
|
|
mktemp.workspace = true
|
2022-08-10 10:18:44 +00:00
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
[features]
|
|
|
|
k2v = []
|