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"
|
2024-06-02 04:58:01 +02:00
|
|
|
version = "1.1.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]
|
2024-06-02 04:58:01 +02:00
|
|
|
anyhow = "1.0"
|
2023-07-12 16:52:23 +02:00
|
|
|
human-size = "0.4"
|
2023-07-01 13:03:41 +02:00
|
|
|
lazy_static = "1.4"
|
2024-06-02 04:58:01 +02:00
|
|
|
log = "0.4"
|
2023-11-26 19:19:28 +01:00
|
|
|
rocket = "0.5"
|
2024-06-02 04:58:01 +02:00
|
|
|
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
|
|
|
|
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" }
|
2024-04-17 16:06:26 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-06-02 04:58:01 +02:00
|
|
|
libc = "0.2"
|
|
|
|
futures = "0.3"
|
|
|
|
regex = "1.10"
|
|
|
|
rstest = "0.21"
|
|
|
|
reqwest = "0.12"
|
|
|
|
scraper = "0.19"
|
|
|
|
test-log = "0.2"
|
|
|
|
testcontainers = "0.17"
|
|
|
|
testcontainers-modules = { version = "0.5", features = ["minio"] }
|
|
|
|
tokio = { version = "1", features = ["process"] }
|