chore: update dependencies and bump version to 1.1.2

This commit is contained in:
Matteo Settenvini 2025-07-05 13:08:39 +02:00
parent 373b141346
commit ec8876681a
Signed by: matteo
GPG key ID: 1C1B12600D81DE05
9 changed files with 1231 additions and 723 deletions

View file

@ -3,7 +3,7 @@
[package]
name = "serves3"
version = "1.1.1"
version = "1.1.2"
authors = ["Matteo Settenvini <matteo.settenvini@montecristosoftware.eu>"]
description = "A very simple proxy to browse files from private S3 buckets"
@ -15,7 +15,7 @@ readme = "README.md"
keywords = ["s3", "proxy", "bucket"]
categories = ["command-line-utilities", "web-programming::http-server"]
edition = "2021"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -30,17 +30,17 @@ rust-s3 = { version = "0.35", default-features = false, features = [
"tokio-rustls-tls",
] }
serde = "1.0"
tempfile = "3.6"
tempfile = "3.20"
[dev-dependencies]
delegate = "0.13"
futures = "0.3"
libc = "0.2"
regex = "1.10"
regex = "1.11"
reqwest = "0.12"
rstest = "0.22"
scraper = "0.20"
rstest = "0.25"
scraper = "0.23"
test-log = "0.2"
testcontainers = "0.23"
testcontainers-modules = { version = "0.11", features = ["minio"] }
testcontainers = "0.24"
testcontainers-modules = { version = "0.12", features = ["minio"] }
tokio = { version = "1", features = ["process"] }