Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Apr 17, 2024
1 parent 85d1e41 commit 23a6c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion async-std/src/server/tcp.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::AsyncStdTransport;
use async_std::net::{TcpListener, TcpStream};
use async_std::task::{block_on, spawn};
use std::{convert::TryInto, env, future::Future, io::Result, pin::Pin};
use std::{convert::TryInto, env, future::Future, io::Result};
use trillium::Info;
use trillium_server_common::Server;

Expand Down
2 changes: 1 addition & 1 deletion smol/src/server/tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::SmolTransport;
use async_global_executor::{block_on, spawn};
use async_net::{TcpListener, TcpStream};
use futures_lite::prelude::*;
use std::{convert::TryInto, env, io::Result, pin::Pin};
use std::{convert::TryInto, env, io::Result};
use trillium::Info;
use trillium_server_common::Server;

Expand Down

0 comments on commit 23a6c1b

Please sign in to comment.