2023-07-01 13:03:41 +02:00
|
|
|
# SPDX-FileCopyrightText: © Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>
|
|
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "serves3"
|
2023-07-12 17:19:26 +02:00
|
|
|
version = "1.0.0"
|
2023-08-28 18:21:17 +02:00
|
|
|
|
2023-07-01 13:03:41 +02:00
|
|
|
authors = ["Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>"]
|
2023-08-28 18:21:17 +02:00
|
|
|
description = "A very simple proxy to browse files from private S3 buckets"
|
2023-07-01 13:03:41 +02:00
|
|
|
license = "EUPL-1.2"
|
|
|
|
|
2023-08-28 18:21:17 +02:00
|
|
|
homepage = "https://git.montecristosoftware.eu/matteo/serves3"
|
|
|
|
repository = "https://git.montecristosoftware.eu/matteo/serves3.git"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["s3", "proxy", "bucket"]
|
|
|
|
categories = ["command-line-utilities", "web-programming::http-server"]
|
|
|
|
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-07-01 13:03:41 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
config = "0.13"
|
2023-07-12 16:52:23 +02:00
|
|
|
human-size = "0.4"
|
2023-07-01 13:03:41 +02:00
|
|
|
lazy_static = "1.4"
|
2023-08-28 18:29:19 +02:00
|
|
|
rocket = "0.5.0-rc.3"
|
|
|
|
rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["tera"] }
|
2023-08-27 17:30:40 +02:00
|
|
|
rust-s3 = { version = "0.33", default-features = false, features = ["tokio-native-tls"] }
|
2023-07-12 16:52:23 +02:00
|
|
|
serde = { version = "1.0" }
|
2023-07-12 17:19:26 +02:00
|
|
|
tempfile = { version = "3.6" }
|