From ca18fee585238d6d81e19f46999559e78705f1fa Mon Sep 17 00:00:00 2001 From: Thomas BESSOU Date: Tue, 24 Oct 2023 00:34:33 +0200 Subject: [PATCH] Fix Bytes version requirement It doesn't compile with a version lower than this due to the absence of `impl From for Vec` --- s3/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3/Cargo.toml b/s3/Cargo.toml index 7140daf5e0..2c21178b84 100644 --- a/s3/Cargo.toml +++ b/s3/Cargo.toml @@ -83,7 +83,7 @@ native-tls = { version = "0.2", optional = true } tokio-stream = { version = "0.1", optional = true } url = "2" minidom = { version = "0.15", optional = true } -bytes = { version = "1" } +bytes = { version = "1.2" } block_on_proc = { version = "0.2", optional = true } [features]