Files @ 330b9c117fa5
Branch filter:

Location: CSY/reowolf/src/lib.rs

330b9c117fa5 306 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
started refactor (safe state). goals: clarify ownership. make cu immutable while round is fallable. distinguish routing from ownership
#[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;