Files @ 7e100501dbde
Branch filter:

Location: CSY/reowolf/src/lib.rs

7e100501dbde 306 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
continued refactor (safe state) connector internals are (mostly) read-only until the moment the round succeed, whereafter the changes to ports/connectors are committed by being folded in
#[macro_use]
mod macros;

mod common;
mod protocol;
mod runtime;

pub use common::{ConnectorId, EndpointPolarity, Payload, Polarity, PortId};
pub use protocol::{ProtocolDescription, TRIVIAL_PD};
pub use runtime::{error, Connector, DummyLogger, FileLogger, VecLogger};

#[cfg(feature = "ffi")]
pub mod ffi;