vibe-ready 0.2.0

Composable runtime, logging, scheduling, and storage foundations for vibe-coding Rust projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cross-platform helpers for task spawning and time.

/// Spawns a future on the current platform runtime.
pub use spawn::spawn;
/// Returns the current Unix timestamp in milliseconds.
pub use time::now;
/// Sleeps asynchronously for a duration.
pub use time::sleep;

mod spawn;
mod time;