From b7d9df2ac32f28238b3aca14a43df6b593f8b08f Mon Sep 17 00:00:00 2001 From: "Aode (lion)" Date: Tue, 2 Nov 2021 17:50:52 -0500 Subject: [PATCH] Enable fail-on-err for s3 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e66a72..ce89c33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "aws-creds" version = "0.26.2" -source = "git+https://github.com/asonix/rust-s3?branch=asonix/main#a9323756817ed94665a0f5a05770290fa3a2160e" +source = "git+https://github.com/asonix/rust-s3?branch=asonix/main#3bcf63a06e1a93fc8350bfb29e546656abe1a993" dependencies = [ "anyhow", "dirs", @@ -1351,7 +1351,7 @@ dependencies = [ [[package]] name = "pict-rs" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "actix-form-data", "actix-rt", @@ -1711,7 +1711,7 @@ dependencies = [ [[package]] name = "rust-s3" version = "0.27.0" -source = "git+https://github.com/asonix/rust-s3?branch=asonix/main#a9323756817ed94665a0f5a05770290fa3a2160e" +source = "git+https://github.com/asonix/rust-s3?branch=asonix/main#3bcf63a06e1a93fc8350bfb29e546656abe1a993" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 8cf8c09..ebd4edf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pict-rs" description = "A simple image hosting service" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" @@ -33,7 +33,7 @@ opentelemetry = { version = "0.16", features = ["rt-tokio"] } opentelemetry-otlp = "0.9" pin-project-lite = "0.2.7" reqwest = { version = "0.11.5", default-features = false, features = ["rustls-tls", "stream"], optional = true } -rust-s3 = { version = "0.27.0", default-features = false, features = ["with-reqwest"], optional = true, git = "https://github.com/asonix/rust-s3", branch = "asonix/main" } +rust-s3 = { version = "0.27.0", default-features = false, features = ["fail-on-err", "with-reqwest"], optional = true, git = "https://github.com/asonix/rust-s3", branch = "asonix/main" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = "0.9.0"