blob: 04e9f9ff40d10339521b411cc9432f647f59e0f3 [file] [log] [blame] [edit]
//! Inter-process communication (IPC) layer between RLS and rustc.
#![deny(missing_docs)]
#[cfg(feature = "client")]
pub mod client;
pub mod rpc;
#[cfg(feature = "server")]
pub mod server;