Skip to content

Commit d5d2945

Browse files
committed
chore: Remove unused use statements in prowand
1 parent f32a0b6 commit d5d2945

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

buttplug/src/server/device/protocol/kiiroo_prowand.rs

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,48 +5,34 @@
55
// Licensed under the BSD 3-Clause license. See LICENSE file in the project root
66
// for full license information.
77

8-
use super::fleshlight_launch_helper::calculate_speed;
98
use crate::{
109
core::{
1110
errors::ButtplugDeviceError,
1211
message::{
1312
self,
1413
ButtplugDeviceMessage,
15-
ButtplugServerDeviceMessage,
1614
Endpoint,
1715
SensorReadingV4,
18-
SensorType,
1916
},
2017
},
2118
server::device::{
2219
hardware::{
2320
Hardware,
2421
HardwareCommand,
25-
HardwareEvent,
2622
HardwareReadCmd,
27-
HardwareSubscribeCmd,
28-
HardwareUnsubscribeCmd,
2923
HardwareWriteCmd,
3024
},
3125
protocol::{generic_protocol_setup, ProtocolHandler},
3226
},
33-
util::{async_manager, stream::convert_broadcast_receiver_to_stream},
3427
};
35-
use dashmap::DashSet;
3628
use futures::{
37-
future::{self, BoxFuture},
29+
future::BoxFuture,
3830
FutureExt,
39-
StreamExt,
4031
};
4132
use std::{
4233
default::Default,
43-
pin::Pin,
44-
sync::{
45-
atomic::{AtomicU8, Ordering::SeqCst},
46-
Arc,
47-
},
34+
sync::Arc,
4835
};
49-
use tokio::sync::broadcast;
5036

5137
generic_protocol_setup!(KiirooProWand, "kiiroo-prowand");
5238

0 commit comments

Comments
 (0)