2018-12-10 16:16:40 -08:00
|
|
|
[package]
|
|
|
|
name = "actix-utils"
|
2019-10-14 17:55:52 +06:00
|
|
|
version = "0.4.7"
|
2018-12-10 16:16:40 -08:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix utils - various actix net related services"
|
|
|
|
keywords = ["network", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/actix-utils/"
|
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
edition = "2018"
|
2019-03-02 14:30:32 -08:00
|
|
|
workspace = ".."
|
2018-12-10 16:16:40 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_utils"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-26 15:20:07 +06:00
|
|
|
actix-service = "0.4.1"
|
|
|
|
actix-codec = "0.1.2"
|
2018-12-10 16:16:40 -08:00
|
|
|
bytes = "0.4"
|
2019-05-12 06:03:50 -07:00
|
|
|
either = "1.5.2"
|
|
|
|
futures = "0.1.25"
|
2018-12-10 16:16:40 -08:00
|
|
|
tokio-timer = "0.2.8"
|
2019-02-21 11:19:16 -08:00
|
|
|
tokio-current-thread = "0.1.4"
|
2019-01-26 13:21:56 -08:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-05-12 08:00:23 -07:00
|
|
|
actix-rt = "0.2.2"
|