Echo/
Library.rs

1//! # Echo: A Resilient, High-Performance Task Scheduler
2//!
3//! Provides a structured concurrency runtime for Rust applications, built on a
4//! high-performance, priority-aware, work-stealing scheduler. It is designed
5//! to be a robust and efficient core execution engine for demanding,
6
7//! concurrent workloads.
8
9#![allow(non_snake_case, non_camel_case_types)]
10
11// --- Crate Modules ---
12// Declares the main modules that constitute the library.
13pub mod Queue;
14
15pub mod Scheduler;
16
17pub mod Task;