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.
cargo fmt
1 parent 04864e4 commit ed4c2eeCopy full SHA for ed4c2ee
crates/client/src/lib.rs
@@ -103,11 +103,11 @@ pub async fn connect(
103
104
#[cfg(windows)]
105
{
106
- let client = tokio::net::windows::named_pipe::ClientOptions::new()
107
- .open(&path)
108
- .map_err(|e| std::io::Error::from(e))?;
109
-
110
- Ok::<_, std::io::Error>(hyper_util::rt::TokioIo::new(client))
+ let client = tokio::net::windows::named_pipe::ClientOptions::new()
+ .open(&path)
+ .map_err(|e| std::io::Error::from(e))?;
+
+ Ok::<_, std::io::Error>(hyper_util::rt::TokioIo::new(client))
111
}
112
113
}))
0 commit comments