operon 0.7.0

A workflow engine for parallel, incremental scheduling of DAG-defined multiplex tasks.
Documentation
mod any;
pub use any::{AnyBackend, AnyBackendError};

mod backend;
pub use backend::{
    MetaBackend, MetaClientApi, MetaConnApi, MetaResolutionApi, MetaTicketApi, MetaTxApi,
};

mod options;
pub use options::MetaBackendOptions;

mod error;
pub(crate) use error::MetaResult;
pub use error::MetaStorageError;

mod mem;
pub(crate) use mem::MemClient;
pub use mem::{MemMetaError, MemMetaStorage, MemMetaStorageOptions};

mod psql;
pub use psql::{PsqlMetaError, PsqlMetaStorage, PsqlMetaStorageOptions};

#[cfg(test)]
mod tests;