secure-exec-client 0.3.1

Rust client transport for the Secure Exec native sidecar
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]

//! Low-level Rust client transport for the Secure Exec native sidecar.
//!
//! This crate owns the framed stdio transport and exposes the generated Secure Exec wire protocol.
//! Higher level products layer their own authentication, extension payloads, and
//! typed API surfaces on top of this transport.

pub mod error;
pub mod transport;
pub mod wire;

pub use error::{ProtocolCodecError, TransportError, TransportResult};
pub use transport::{SidecarTransport, WireSidecarCallback};