[package] name = "coro" version = "0.1.1" description = "Stackful, first-class asymmetric coroutines." authors = ["Hugo Sanz González "] license = "MIT" homepage = "https://github.com/hsanzg/coro" documentation = "https://docs.rs/coro" repository = "https://github.com/hsanzg/coro" keywords = ["coroutines", "stackful"] categories = ["concurrency"] readme = "README.md" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["safe_yield", "std"] # todo: version 2.0.0-alpha.7 of smallvec will likely replace smallvec/write by smallvec/std. safe_yield = [] std = ["smallvec/write", "libc/use_std"] [dependencies] libc = { version = "0.2", default-features = false } smallvec = { version = "2.0.0-alpha.6", default-features = false }