1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 15:03:00 +01:00
actix-net/actix-ioframe/Cargo.toml

34 lines
906 B
TOML
Raw Normal View History

2019-06-26 11:19:40 +02:00
[package]
name = "actix-ioframe"
2019-12-29 08:42:42 +01:00
version = "0.5.0"
2019-06-26 11:19:40 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix framed service"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net.git"
2019-09-25 06:47:06 +02:00
documentation = "https://docs.rs/actix-ioframe/"
2019-06-26 11:19:40 +02:00
categories = ["network-programming", "asynchronous"]
license = "MIT/Apache-2.0"
edition = "2018"
[lib]
name = "actix_ioframe"
path = "src/lib.rs"
[dependencies]
2019-12-29 08:42:42 +01:00
actix-service = "1.0.1"
2019-12-11 05:23:01 +01:00
actix-codec = "0.2.0"
2019-12-29 08:42:42 +01:00
actix-utils = "1.0.4"
actix-rt = "1.0.0"
2019-12-29 08:42:42 +01:00
bytes = "0.5.3"
either = "1.5.3"
futures-sink = { version = "0.3.4", default-features = false }
futures-core = { version = "0.3.4", default-features = false }
2019-12-02 17:30:09 +01:00
pin-project = "0.4.6"
2019-06-26 11:19:40 +02:00
log = "0.4"
[dev-dependencies]
2020-03-08 06:38:07 +01:00
actix-connect = "2.0.0-alpha.2"
2019-12-11 09:47:30 +01:00
actix-testing = "1.0.0"
futures-util = { version = "0.3.4", default-features = false }