motorcortex-rust 0.5.0

Motorcortex Rust: a Rust client for the Motorcortex Core real-time control system (async + blocking).
Documentation
//! Async-first core: actor-style `Request` / `Subscribe` + their drivers.
//!
//! Exposed as `motorcortex_rust::core::*`. The blocking façade under
//! `motorcortex_rust::blocking::*` is a thin sync wrapper over these
//! types.
//!
//! See `ARCHITECTURE.md` for the design rationale.

mod driver;
mod proto;
mod request;
mod subscribe;
mod subscription;
pub mod state;
mod util;

pub use request::Request;
pub use state::ConnectionState;
pub use subscribe::Subscribe;
pub use subscription::{Missed, StreamResult, Subscription};