Echo/
Library.rs

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