We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f3ab8 commit cb5ef2aCopy full SHA for cb5ef2a
wrt-platform/src/ipc.rs
@@ -8,9 +8,9 @@
8
use core::{fmt::Debug, time::Duration};
9
10
#[cfg(not(feature = "std"))]
11
-use std::{boxed::Box, string::String, vec::Vec};
+use alloc::{boxed::Box, string::String, vec::Vec};
12
#[cfg(feature = "std")]
13
14
use wrt_sync::WrtMutex;
15
16
use wrt_error::{Error, ErrorCategory, Result};
@@ -233,7 +233,7 @@ impl IpcServer {
233
Err(e) => {
234
if *self.running.lock() {
235
// Only log error if we're still running
236
- eprintln!("IPC server error: {}", e);
+ eprintln!("IPC server error: {e}");
237
}
238
239
0 commit comments