1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// Copyright (c) 2022 TOYOTA MOTOR CORPORATION. Licensed under MIT OR Apache-2.0.
//! SpringQL-core implementation.
//!
//! # High-level architecture diagram
//!
//! 
#![deny(missing_debug_implementations, missing_docs)]
#[macro_use]
extern crate derive_new;
pub(crate) mod expr_resolver;
pub(crate) mod expression;
pub(crate) mod mem_size;
pub(crate) mod pipeline;
pub(crate) mod sql_processor;
pub(crate) mod stream_engine;
mod api;
pub use api::*;