From 2d8fbf4439a2f65602e7a6a267dbbd675ea2c9f3 Mon Sep 17 00:00:00 2001
From: Michel Kuhlmann <kum@tkconsult.ch>
Date: Tue, 29 Oct 2019 09:27:25 +0100
Subject: [PATCH] apply rustfmt

---
 src/main.rs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index f8366e6..fe10247 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -217,7 +217,11 @@ fn main() {
     let cors = matches.is_present("cors");
     let ip = matches.value_of("ip").unwrap();
     let port = matches.value_of("port").unwrap().parse::<u16>().unwrap();
-    let upload_size_limit = matches.value_of("upload_size_limit").unwrap().parse::<u64>().unwrap();
+    let upload_size_limit = matches
+        .value_of("upload_size_limit")
+        .unwrap()
+        .parse::<u64>()
+        .unwrap();
     let auth = matches.value_of("auth");
     let compress = matches.values_of_lossy("compress");
     let threads = matches.value_of("threads").unwrap().parse::<u8>().unwrap();
-- 
GitLab