serial_socket/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Serial port backends based on sockets and Windows named pipes.
5
6#![expect(missing_docs)]
7#![forbid(unsafe_code)]
8
9pub mod net;
10#[cfg(windows)]
11pub mod windows;