# 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 = "2018" name = "async-scoped" version = "0.9.0" authors = ["Rajsekar Manokaran "] description = "Spawn scoped (non 'static) asynchronous futures for async_std and tokio runtimes" homepage = "https://github.com/rmanoka/async-scoped" documentation = "https://docs.rs/async-scoped" readme = "README.md" keywords = [ "async", "async-std", "tokio", "scoped", "spawn", ] categories = [ "asynchronous", "concurrency", ] license = "Apache-2.0/MIT" repository = "https://github.com/rmanoka/async-scoped" [package.metadata.docs.rs] features = [ "use-async-std", "use-tokio", ] [[bench]] name = "spawner" path = "benches/spawner.rs" harness = false [dependencies.async-std] version = "1.12.0" optional = true [dependencies.futures] version = "0.3.15" [dependencies.pin-project] version = "1.0" [dependencies.tokio] version = "1.0" features = [ "rt-multi-thread", "macros", "sync", ] optional = true [dev-dependencies.async-std] version = "1.12.0" features = ["attributes"] [dev-dependencies.femme] version = "2.2.1" [dev-dependencies.log] version = "0.4.20" features = ["kv_unstable"] [features] use-async-std = ["async-std"] use-tokio = ["tokio"]