2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
2025-01-31 17:18:04 +00:00
|
|
|
name = "garage_api_admin"
|
2025-02-20 18:09:35 +00:00
|
|
|
version = "1.1.0"
|
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"
|
2025-01-31 17:52:42 +00:00
|
|
|
description = "Admin API server crate for the Garage object store"
|
2020-07-07 12:14:58 +00:00
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2025-03-05 10:00:19 +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]
|
2025-02-05 14:06:10 +00:00
|
|
|
format_table.workspace = true
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_model.workspace = true
|
2025-02-05 14:36:47 +00:00
|
|
|
garage_block.workspace = true
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_table.workspace = true
|
|
|
|
garage_util.workspace = true
|
|
|
|
garage_rpc.workspace = true
|
2025-01-31 17:18:04 +00:00
|
|
|
garage_api_common.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-29 09:57:07 +00:00
|
|
|
argon2.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
async-trait.workspace = true
|
2025-02-05 14:06:10 +00:00
|
|
|
bytesize.workspace = true
|
2025-03-11 14:17:31 +00:00
|
|
|
chrono.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
err-derive.workspace = true
|
|
|
|
hex.workspace = true
|
2025-01-28 14:12:03 +00:00
|
|
|
paste.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
tracing.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
futures.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
http.workspace = true
|
2024-02-15 09:39:06 +00:00
|
|
|
hyper = { workspace = true, default-features = false, features = ["server", "http1"] }
|
2024-02-05 12:02:02 +00:00
|
|
|
url.workspace = true
|
2022-02-17 22:28:23 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2025-03-06 10:51:48 +00:00
|
|
|
utoipa.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
|
|
|
|
opentelemetry.workspace = true
|
|
|
|
opentelemetry-prometheus = { workspace = true, optional = true }
|
|
|
|
prometheus = { workspace = true, optional = true }
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
[features]
|
2022-09-03 22:43:48 +00:00
|
|
|
metrics = [ "opentelemetry-prometheus", "prometheus" ]
|
2025-03-12 14:01:39 +00:00
|
|
|
k2v = [ "garage_model/k2v" ]
|