Skip to main content

crabtalk_transport/
lib.rs

1//! Transport layer for the Crabtalk daemon.
2//!
3//! Wire message types, API traits, and codec live in `crabtalk-core::protocol`.
4//! This crate provides UDS and TCP transport layers.
5
6pub mod tcp;
7#[cfg(unix)]
8pub mod uds;