open-coroutine 0.0.6

The open-coroutine is a simple, efficient and generic stackful-coroutine library.
docs.rs failed to build open-coroutine-0.0.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: open-coroutine-0.7.0

open-coroutine

What is open-coroutine ?

The open-coroutine is a simple, efficient and generic stackful-coroutine library.

How to use this library ?

step1

add dependency to your Cargo.toml

[dependencies]
open-coroutine = "0.0.1"

step2

enable hooks

fn main() {
    //step2 enable hooks
    open_coroutine::init();
    //......
}

step3

enjoy the performance improvement brought by open-coroutine

How to run examples ?

cargo run --example hello