flashcron 0.1.0

A lightning-fast, ultra-efficient cron daemon written in Rust - Schedule tasks at the speed of light
Documentation
//! # FlashCron
//!
//! A lightweight, efficient, and eco-friendly cron daemon written in Rust.
//!
//! ## Features
//!
//! - **Efficient**: Minimal memory footprint (~2-5MB), fast startup
//! - **Simple**: TOML configuration, intuitive CLI
//! - **Observable**: Built-in logging, optional Prometheus metrics
//! - **Reliable**: Graceful shutdown, job timeout handling, automatic retry
//! - **Cross-platform**: Linux, macOS, Windows support

pub mod config;
pub mod error;
pub mod executor;
pub mod scheduler;

pub use config::Config;
pub use error::{Error, Result};
pub use executor::JobExecutor;
pub use scheduler::Scheduler;

/// Library version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");