Skip to main content

reifydb_flow/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
5#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
6#![cfg_attr(not(debug_assertions), deny(warnings))]
7#![allow(clippy::tabs_in_doc_comments)]
8
9pub mod factory;
10pub mod operator;
11pub mod timer;
12pub mod window;
13
14#[cfg(feature = "runtime")]
15pub mod context;
16#[cfg(feature = "runtime")]
17pub mod engine;
18#[cfg(feature = "runtime")]
19pub mod error;
20#[cfg(feature = "runtime")]
21pub mod transaction;