open-coroutine 0.7.0

The open-coroutine is a simple, efficient and generic stackfull-coroutine library.
Documentation
1
2
3
4
5
6
7
8
include!("../examples/file_co.rs");

// The implementation of rust std is inconsistent between unix and windows.
#[cfg(not(windows))]
#[test]
fn file_co() -> Result<()> {
    main()
}