# 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 = "rusty_pool" version = "0.7.0" authors = ["robinfriedli "] description = "Self growing / shrinking `ThreadPool` implementation based on crossbeam's multi-producer multi-consumer channels that enables awaiting the result of a task and offers async support" homepage = "https://github.com/robinfriedli/rusty_pool" readme = "README.md" keywords = [ "concurrency", "thread", "threadpool", "async", "futures", ] categories = [ "asynchronous", "concurrency", ] license = "Apache-2.0" repository = "https://github.com/robinfriedli/rusty_pool" [dependencies.crossbeam-channel] version = "0.5.4" [dependencies.futures] version = "0.3.21" optional = true [dependencies.futures-channel] version = "0.3.21" [dependencies.futures-executor] version = "0.3.21" [dependencies.num_cpus] version = "1.13.1" [features] async = ["futures"] default = ["async"]