2020-11-02 14:48:39 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_web"
|
2023-09-05 21:28:12 +00:00
|
|
|
version = "0.8.4"
|
2020-11-02 14:48:39 +00:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
|
|
|
|
edition = "2018"
|
2021-03-18 20:59:17 +00:00
|
|
|
license = "AGPL-3.0"
|
2020-11-02 14:57:23 +00:00
|
|
|
description = "S3-like website endpoint crate for the Garage object store"
|
2020-11-02 14:48:39 +00:00
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2021-11-09 11:24:04 +00:00
|
|
|
readme = "../../README.md"
|
2020-11-02 14:48:39 +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_api.workspace = true
|
|
|
|
garage_model.workspace = true
|
|
|
|
garage_util.workspace = true
|
|
|
|
garage_table.workspace = true
|
2020-11-02 14:48:39 +00:00
|
|
|
|
2021-03-16 14:58:40 +00:00
|
|
|
err-derive = "0.3"
|
2023-01-23 22:27:44 +00:00
|
|
|
tracing = "0.1"
|
2021-03-18 20:59:17 +00:00
|
|
|
percent-encoding = "2.1.0"
|
|
|
|
|
2020-11-02 14:48:39 +00:00
|
|
|
futures = "0.3"
|
2021-03-18 20:59:17 +00:00
|
|
|
|
2020-11-02 14:48:39 +00:00
|
|
|
http = "0.2"
|
2021-10-15 09:05:09 +00:00
|
|
|
hyper = { version = "0.14", features = ["server", "http1", "runtime", "tcp", "stream"] }
|
2022-02-22 14:21:06 +00:00
|
|
|
|
|
|
|
opentelemetry = "0.17"
|