mirror of
https://git.deuxfleurs.fr/Deuxfleurs/garage.git
synced 2025-03-22 10:02:40 +00:00
50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
[package]
|
|
name = "garage_api_admin"
|
|
version = "1.1.0"
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
edition = "2018"
|
|
license = "AGPL-3.0"
|
|
description = "Admin API server crate 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]
|
|
format_table.workspace = true
|
|
garage_model.workspace = true
|
|
garage_block.workspace = true
|
|
garage_table.workspace = true
|
|
garage_util.workspace = true
|
|
garage_rpc.workspace = true
|
|
garage_api_common.workspace = true
|
|
|
|
argon2.workspace = true
|
|
async-trait.workspace = true
|
|
bytesize.workspace = true
|
|
chrono.workspace = true
|
|
err-derive.workspace = true
|
|
hex.workspace = true
|
|
paste.workspace = true
|
|
tracing.workspace = true
|
|
|
|
futures.workspace = true
|
|
tokio.workspace = true
|
|
http.workspace = true
|
|
hyper = { workspace = true, default-features = false, features = ["server", "http1"] }
|
|
url.workspace = true
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
utoipa.workspace = true
|
|
|
|
opentelemetry.workspace = true
|
|
opentelemetry-prometheus = { workspace = true, optional = true }
|
|
prometheus = { workspace = true, optional = true }
|
|
|
|
[features]
|
|
metrics = [ "opentelemetry-prometheus", "prometheus" ]
|
|
k2v = [ "garage_model/k2v" ]
|