2022-03-15 11:04:12 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_block"
|
2024-01-16 15:28:17 +00:00
|
|
|
version = "0.9.1"
|
2022-03-15 11:04:12 +00:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
description = "Block manager for the Garage object store"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
|
|
|
readme = "../../README.md"
|
|
|
|
|
|
|
|
[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
|
|
|
|
garage_rpc.workspace = true
|
|
|
|
garage_util.workspace = true
|
|
|
|
garage_table.workspace = true
|
2022-03-15 11:04:12 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
opentelemetry.workspace = true
|
|
|
|
|
|
|
|
arc-swap.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
bytesize.workspace = true
|
|
|
|
hex.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
|
|
|
|
async-compression.workspace = true
|
|
|
|
zstd.workspace = true
|
|
|
|
|
|
|
|
serde.workspace = true
|
|
|
|
serde_bytes.workspace = true
|
|
|
|
|
|
|
|
futures.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-util.workspace = true
|
2022-09-03 16:37:24 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
system-libs = [ "zstd/pkg-config" ]
|