vibe-ready 0.2.0

Composable runtime, logging, scheduling, and storage foundations for vibe-coding Rust projects.
Documentation
1
2
3
4
5
#[tokio::test]
async fn spawn_returns_join_handle_for_future_output() {
    let handle = spawn(async { 42 });
    assert_eq!(handle.await.expect("spawned task"), 42);
}