2019-03-28 11:56:52 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-threadpool"
|
2019-08-05 18:54:49 +02:00
|
|
|
version = "0.1.2"
|
2019-03-28 11:56:52 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix thread pool for sync code"
|
|
|
|
keywords = ["actix", "network", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/actix-threadpool/"
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
|
|
|
workspace = ".."
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_threadpool"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-18 10:23:50 +02:00
|
|
|
derive_more = "0.15"
|
2019-03-28 11:56:52 +01:00
|
|
|
futures = "0.1.25"
|
2019-08-04 15:46:14 +02:00
|
|
|
parking_lot = "0.9"
|
2019-03-28 11:56:52 +01:00
|
|
|
lazy_static = "1.2"
|
|
|
|
log = "0.4"
|
|
|
|
num_cpus = "1.10"
|
|
|
|
threadpool = "1.7"
|