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

31 lines
864 B
TOML
Raw Normal View History

[package]
name = "actix-utils"
2020-01-08 06:18:56 +01:00
version = "1.0.6"
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"
edition = "2018"
[lib]
name = "actix_utils"
path = "src/lib.rs"
[dependencies]
2020-01-08 05:56:53 +01:00
actix-service = "1.0.1"
actix-rt = "1.0.0"
2019-12-11 05:23:01 +01:00
actix-codec = "0.2.0"
2020-01-08 05:56:53 +01:00
bitflags = "1.2"
bytes = "0.5.3"
either = "1.5.3"
futures-channel = { version = "0.3.4", default-features = false }
futures-sink = { version = "0.3.4", default-features = false }
futures-util = { version = "0.3.4", default-features = false }
pin-project = "0.4.17"
2019-01-26 22:21:56 +01:00
log = "0.4"
2020-01-08 05:56:53 +01:00
slab = "0.4"