reifydb-sub-task 0.4.12

Task execution subsystem for ReifyDB
Documentation
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
#![cfg_attr(not(debug_assertions), deny(warnings))]
#![allow(clippy::tabs_in_doc_comments)]

pub mod context;
#[cfg(not(reifydb_single_threaded))]
pub mod coordinator;
#[cfg(not(reifydb_single_threaded))]
pub mod factory;
#[cfg(not(reifydb_single_threaded))]
pub mod handle;
pub mod registry;
pub mod schedule;
#[cfg(not(reifydb_single_threaded))]
pub mod subsystem;
pub mod task;