Buttplug sex toy control library

chore: Fix 2024 edition issues in intiface_engine

+2 -2
+2 -2
crates/intiface_engine/src/remote_server.rs
··· 238 238 } 239 239 } 240 240 241 - pub fn event_stream(&self) -> impl Stream<Item = ButtplugRemoteServerEvent> { 241 + pub fn event_stream(&self) -> impl Stream<Item = ButtplugRemoteServerEvent> + use<> { 242 242 convert_broadcast_receiver_to_stream(self.event_sender.subscribe()) 243 243 } 244 244 245 245 pub fn start<ConnectorType>( 246 246 &self, 247 247 mut connector: ConnectorType, 248 - ) -> impl Future<Output = Result<(), ButtplugServerConnectorError>> 248 + ) -> impl Future<Output = Result<(), ButtplugServerConnectorError>> + use<ConnectorType> 249 249 where 250 250 ConnectorType: 251 251 ButtplugConnector<ButtplugServerMessageVariant, ButtplugClientMessageVariant> + 'static,