Skip to content

Commit 31ee69a

Browse files
committed
remove unused imports
1 parent 8758244 commit 31ee69a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/websocket/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
use futures_util::{SinkExt, StreamExt, stream::SplitSink};
1313
use http::{
14-
HeaderMap, Request,
14+
Request,
1515
header::{HeaderName, HeaderValue},
1616
};
1717
use serde::{Deserialize, Serialize, ser::Serializer};
1818
use tauri::{
19-
AppHandle, Manager, Runtime, State, Url, Window,
19+
AppHandle, Manager, Runtime, State, Window,
2020
ipc::Channel,
2121
plugin::{Builder as PluginBuilder, TauriPlugin},
2222
};
@@ -34,8 +34,8 @@ use tokio_tungstenite::{
3434
},
3535
};
3636

37+
use std::collections::HashMap;
3738
use std::str::FromStr;
38-
use std::{collections::HashMap, marker::PhantomData};
3939

4040
type Id = u32;
4141
type WebSocket = WebSocketStream<MaybeTlsStream<TcpStream>>;

0 commit comments

Comments
 (0)