From c18341b4e60c0fcd1a2471507b6a6c19fa0b8ca3 Mon Sep 17 00:00:00 2001 From: hotate29 Date: Sat, 11 Jun 2022 02:28:36 +0900 Subject: [PATCH] Set the patch version of `time`. The time::format_description::well_known::Rfc2822 used in this crate has been added since time version 0.3.6. Therefore, Cargo.toml must set 0.3.6 --- s3/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3/Cargo.toml b/s3/Cargo.toml index a40f3a1b92..f14956eef2 100644 --- a/s3/Cargo.toml +++ b/s3/Cargo.toml @@ -28,7 +28,7 @@ aws-region = "0.24" # aws-region = {path = "../aws-region"} base64 = "0.13" cfg-if = "1" -time = { version = "0.3", features = ["formatting", "macros"] } +time = { version = "0.3.6", features = ["formatting", "macros"] } futures-io = { version = "0.3", optional = true } futures-util = { version = "0.3", optional = true, features = ["io"] } hex = "0.4"