distant-core 0.13.1

Core library for distant, enabling operation on a remote computer through file and process manipulation
Documentation
mod client;
pub use client::{
    LspContent, LspContentParseError, LspData, LspDataParseError, LspHeader, LspHeaderParseError,
    LspSessionInfoError, RemoteLspProcess, RemoteLspStderr, RemoteLspStdin, RemoteLspStdout,
    RemoteProcess, RemoteProcessError, RemoteStderr, RemoteStdin, RemoteStdout, Session,
    SessionInfo, SessionInfoFile, SessionInfoParseError,
};

mod constants;

mod net;
pub use net::{
    DataStream, InmemoryStream, InmemoryStreamReadHalf, InmemoryStreamWriteHalf, Listener,
    SecretKey, Transport, TransportError, TransportListener, TransportListenerCtx,
    TransportReadHalf, TransportWriteHalf, UnprotectedToHexKey,
};

pub mod data;
pub use data::{Request, RequestData, Response, ResponseData};

mod server;
pub use server::{DistantServer, DistantServerOptions, PortRange, RelayServer};