# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "coro" version = "0.1.1" authors = ["Hugo Sanz González "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Stackful, first-class asymmetric coroutines." homepage = "https://github.com/hsanzg/coro" documentation = "https://docs.rs/coro" readme = "README.md" keywords = [ "coroutines", "stackful", ] categories = ["concurrency"] license = "MIT" repository = "https://github.com/hsanzg/coro" [lib] name = "coro" path = "src/lib.rs" [dependencies.libc] version = "0.2" default-features = false [dependencies.smallvec] version = "2.0.0-alpha.6" default-features = false [features] default = [ "safe_yield", "std", ] safe_yield = [] std = [ "smallvec/write", "libc/use_std", ]