From 14c1173d1339f831f4ef19aa33c6a4cf22386d34 Mon Sep 17 00:00:00 2001 From: "Spencer C. Imbleau" Date: Fri, 13 Sep 2024 09:18:57 -0400 Subject: [PATCH] fix: multiline imports --- Cargo.toml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0b80a547..c5fa9886 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,9 +32,7 @@ console = "0.15" directories = "5" dunce = "1" flate2 = "1" -futures-util = { version = "0.3", default-features = false, features = [ - "sink", -] } +futures-util = { version = "0.3", default-features = false, features = ["sink"] } htmlescape = "0.3.1" humantime = "2" humantime-serde = "1" @@ -52,10 +50,7 @@ oxipng = "9" parking_lot = "0.12" rand = "0.8.5" remove_dir_all = "0.8" -reqwest = { version = "0.12", default-features = false, features = [ - "stream", - "trust-dns", -] } +reqwest = { version = "0.12", default-features = false, features = ["stream", "trust-dns"] } sha2 = "0.10" schemars = { version = "0.8", features = ["derive"] } seahash = { version = "4", features = ["use_std"] } @@ -68,10 +63,7 @@ tar = "0.4" time = { version = "0.3", features = ["serde-well-known"] } thiserror = "1" tokio = { version = "1", default-features = false, features = ["full"] } -tokio-stream = { version = "0.1", default-features = false, features = [ - "fs", - "sync", -] } +tokio-stream = { version = "0.1", default-features = false, features = ["fs", "sync"] } tokio-tungstenite = "0.23" toml = "0.8" tower-http = { version = "0.5.1", features = ["fs", "trace", "set-header"] }