1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 07:02:59 +01:00
actix-net/actix-threadpool/Cargo.toml

28 lines
745 B
TOML
Raw Normal View History

2019-03-28 11:56:52 +01:00
[package]
name = "actix-threadpool"
2020-05-20 07:19:16 +02:00
version = "0.3.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-12-02 17:47:49 +01:00
derive_more = "0.99.2"
2019-12-12 01:57:40 +01:00
futures-channel = "0.3.1"
parking_lot = "0.10"
lazy_static = "1.3"
2019-03-28 11:56:52 +01:00
log = "0.4"
num_cpus = "1.10"
threadpool = "1.7"