1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 09:23:00 +01:00
actix-net/actix-utils/Cargo.toml

31 lines
782 B
TOML
Raw Normal View History

[package]
name = "actix-utils"
version = "0.3.4"
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 23:30:32 +01:00
workspace = ".."
[lib]
name = "actix_utils"
path = "src/lib.rs"
[dependencies]
2019-03-09 23:23:08 +01:00
actix-service = "0.3.3"
actix-codec = "0.1.1"
bytes = "0.4"
2019-02-21 20:19:16 +01:00
futures = "0.1.24"
tokio-timer = "0.2.8"
2019-02-21 20:19:16 +01:00
tokio-current-thread = "0.1.4"
2019-01-26 22:21:56 +01:00
log = "0.4"
[dev-dependencies]
actix-rt = "0.2.1"