chore(lint): Run rustfmt

This commit is contained in:
Lewin Bormann
2020-02-16 20:57:20 +01:00
parent a80984d219
commit c70956269b

View File

@@ -11,9 +11,9 @@ use std::net::SocketAddr;
use std::sync::{Arc, Mutex};
use hyper::header;
use percent_encoding::{percent_encode, AsciiSet, CONTROLS};
use tokio::sync::oneshot;
use url::form_urlencoded;
use percent_encoding::{percent_encode, AsciiSet, CONTROLS};
const QUERY_SET: AsciiSet = CONTROLS.add(b' ').add(b'"').add(b'#').add(b'<').add(b'>');