forked from Deuxfleurs/garage
trinity-1686a
f6f8b7f1ad
Add support for [PostObject](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPOST.html) - [x] routing PostObject properly - [x] parsing multipart body - [x] validating signature - [x] validating policy - [x] validating content length - [x] actually saving data Co-authored-by: trinity-1686a <trinity@deuxfleurs.fr> Co-authored-by: Trinity Pointard <trinity.pointard@gmail.com> Reviewed-on: Deuxfleurs/garage#222 Reviewed-by: Alex <alex@adnab.me> Co-authored-by: trinity-1686a <trinity.pointard@gmail.com> Co-committed-by: trinity-1686a <trinity.pointard@gmail.com>
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "garage_api"
|
|
version = "0.6.0"
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
edition = "2018"
|
|
license = "AGPL-3.0"
|
|
description = "S3 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]
|
|
garage_model = { version = "0.6.0", path = "../model" }
|
|
garage_table = { version = "0.6.0", path = "../table" }
|
|
garage_util = { version = "0.6.0", path = "../util" }
|
|
|
|
base64 = "0.13"
|
|
bytes = "1.0"
|
|
chrono = "0.4"
|
|
crypto-mac = "0.10"
|
|
err-derive = "0.3"
|
|
hex = "0.4"
|
|
hmac = "0.10"
|
|
idna = "0.2"
|
|
log = "0.4"
|
|
md-5 = "0.9"
|
|
nom = "7.1"
|
|
sha2 = "0.9"
|
|
|
|
futures = "0.3"
|
|
futures-util = "0.3"
|
|
pin-project = "1.0"
|
|
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
|
|
|
|
form_urlencoded = "1.0.0"
|
|
http = "0.2"
|
|
httpdate = "0.3"
|
|
http-range = "0.1"
|
|
hyper = { version = "0.14", features = ["server", "http1", "runtime", "tcp", "stream"] }
|
|
multer = "2.0"
|
|
percent-encoding = "2.1.0"
|
|
roxmltree = "0.14"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_bytes = "0.11"
|
|
serde_json = "1.0"
|
|
quick-xml = { version = "0.21", features = [ "serialize" ] }
|
|
url = "2.1"
|