2018-12-11 01:16:40 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-utils"
|
2019-02-21 19:41:39 +01:00
|
|
|
version = "0.2.3"
|
2018-12-11 01:16:40 +01: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"
|
|
|
|
workspace = "../"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_utils"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-02-03 23:05:13 +01:00
|
|
|
actix-service = "0.2.1"
|
2018-12-11 17:20:19 +01:00
|
|
|
actix-codec = "0.1.0"
|
2018-12-11 01:16:40 +01:00
|
|
|
bytes = "0.4"
|
|
|
|
futures = "0.1"
|
|
|
|
tokio-timer = "0.2.8"
|
2019-01-26 22:15:17 +01:00
|
|
|
tokio-current-thread = "0.1"
|
2019-01-26 22:21:56 +01:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-02-03 20:33:26 +01:00
|
|
|
actix-rt = "0.1"
|