2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_api"
|
2024-03-28 14:19:44 +00:00
|
|
|
version = "1.0.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"
|
2020-07-07 12:14:58 +00:00
|
|
|
description = "S3 API server 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_model.workspace = true
|
|
|
|
garage_table.workspace = true
|
|
|
|
garage_block.workspace = true
|
2024-02-13 11:55:41 +00:00
|
|
|
garage_net.workspace = true
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_util.workspace = true
|
|
|
|
garage_rpc.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-23 15:49:50 +00:00
|
|
|
aes-gcm.workspace = true
|
2024-02-29 09:57:07 +00:00
|
|
|
argon2.workspace = true
|
2024-02-23 15:49:50 +00:00
|
|
|
async-compression.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
async-trait.workspace = true
|
|
|
|
base64.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
chrono.workspace = true
|
2024-03-21 13:06:59 +00:00
|
|
|
crc32fast.workspace = true
|
|
|
|
crc32c.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
crypto-common.workspace = true
|
|
|
|
err-derive.workspace = true
|
|
|
|
hex.workspace = true
|
|
|
|
hmac.workspace = true
|
|
|
|
idna.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
md-5.workspace = true
|
|
|
|
nom.workspace = true
|
|
|
|
pin-project.workspace = true
|
2024-03-21 13:06:59 +00:00
|
|
|
sha1.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
sha2.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
futures.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-stream.workspace = true
|
2024-02-23 15:49:50 +00:00
|
|
|
tokio-util.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
form_urlencoded.workspace = true
|
|
|
|
http.workspace = true
|
|
|
|
httpdate.workspace = true
|
|
|
|
http-range.workspace = true
|
2024-02-05 17:49:54 +00:00
|
|
|
http-body-util.workspace = true
|
2024-02-15 09:39:06 +00:00
|
|
|
hyper = { workspace = true, default-features = false, features = ["server", "http1"] }
|
2024-02-05 17:49:54 +00:00
|
|
|
hyper-util.workspace = true
|
2024-02-05 12:02:02 +00:00
|
|
|
multer.workspace = true
|
|
|
|
percent-encoding.workspace = true
|
|
|
|
roxmltree.workspace = true
|
|
|
|
url.workspace = true
|
2022-02-17 22:28:23 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_bytes.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
quick-xml.workspace = true
|
|
|
|
|
|
|
|
opentelemetry.workspace = true
|
|
|
|
opentelemetry-prometheus = { workspace = true, optional = true }
|
|
|
|
prometheus = { workspace = true, optional = true }
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
k2v = [ "garage_util/k2v", "garage_model/k2v" ]
|
2022-09-03 22:43:48 +00:00
|
|
|
metrics = [ "opentelemetry-prometheus", "prometheus" ]
|