mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-11 14:56:53 +00:00
[fix-cargo-toml] fix cargo warnings in Cargo.toml files
This commit is contained in:
+1
-1
@@ -45,7 +45,7 @@ http.workspace = true
|
||||
httpdate.workspace = true
|
||||
http-range.workspace = true
|
||||
http-body-util.workspace = true
|
||||
hyper.workspace = true
|
||||
hyper = { workspace = true, default-features = false, features = ["server", "http1"] }
|
||||
hyper-util.workspace = true
|
||||
multer.workspace = true
|
||||
percent-encoding.workspace = true
|
||||
|
||||
@@ -349,7 +349,7 @@ mod tests {
|
||||
crate::signature::signing_hmac(&datetime, secret_key, region, "s3").unwrap();
|
||||
|
||||
let data: &[&[u8]] = &[b"1"];
|
||||
let body = futures::stream::iter(data.iter().map(|block| Ok(block.as_ref().into())));
|
||||
let body = futures::stream::iter(data.iter().map(|block| Ok(block.to_vec().into())));
|
||||
|
||||
let seed_signature = Hash::default();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user