From 56e224c43e31dd3ca3ed9034993ace3620e90daa Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 13 May 2024 11:53:29 -0500 Subject: [PATCH] actix-http: Make rustfmt happy for tls-rustls example --- actix-http/examples/tls_rustls.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/actix-http/examples/tls_rustls.rs b/actix-http/examples/tls_rustls.rs index 0a4305c87..ebb7b8b38 100644 --- a/actix-http/examples/tls_rustls.rs +++ b/actix-http/examples/tls_rustls.rs @@ -12,12 +12,11 @@ //! Protocol: HTTP/1.1 //! ``` -use tls_rustls_023 as rustls; - use std::io; use actix_http::{Error, HttpService, Request, Response}; use actix_utils::future::ok; +use tls_rustls_023 as rustls; #[actix_rt::main] async fn main() -> io::Result<()> {