garage/src/web/Cargo.toml

28 lines
771 B
TOML
Raw Normal View History

2020-11-02 15:48:39 +01:00
[package]
name = "garage_web"
2021-01-15 17:54:48 +01:00
version = "0.1.1"
2020-11-02 15:48:39 +01:00
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
edition = "2018"
license = "GPL-3.0"
2020-11-02 15:57:23 +01:00
description = "S3-like website endpoint crate for the Garage object store"
2020-11-02 15:48:39 +01:00
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
[lib]
path = "lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-01-15 17:54:48 +01:00
garage_util = { version = "0.1.1", path = "../util" }
2020-11-02 15:48:39 +01:00
garage_table = { version = "0.1.1", path = "../table" }
garage_model = { version = "0.1.1", path = "../model" }
2020-11-21 17:50:19 +01:00
garage_api = { version = "0.1.1", path = "../api" }
2020-11-02 15:48:39 +01:00
2021-03-16 15:58:40 +01:00
err-derive = "0.3"
2020-11-02 15:48:39 +01:00
log = "0.4"
futures = "0.3"
http = "0.2"
2021-03-15 22:36:41 +01:00
hyper = "0.14"
2020-11-10 09:57:07 +01:00
percent-encoding = "2.1.0"
2020-11-20 21:23:32 +01:00
idna = "0.2"