coroutine 0.1.0

Coroutine Library in Rust
[package]
name = "coroutine"
version = "0.1.0"
authors = [
    "Y. T. Chung <zonyitoo@gmail.com>",
    "Young.Wu <doomsplayer@gmail.com>",
    "Rustcc Developers"
]
license = "MIT/ISC"
repository = "https://github.com/rustcc/coroutine-rs"
description = "Coroutine Library in Rust"
readme = "README.md"
homepage = "https://github.com/rustcc/coroutine-rs"
build = "build.rs"
keywords = ["coroutine", "green", "thread", "fiber"]

[build-dependencies]
gcc = "*"
log = "*"
num_cpus = "*"

[lib]
name = "coroutine"
path = "src/lib.rs"

[dependencies]
deque = "*"
mmap = "*"

[dev-dependencies]
num_cpus = "*"