2019-06-26 15:19:40 +06:00
|
|
|
[package]
|
|
|
|
name = "actix-ioframe"
|
2019-12-29 13:42:42 +06:00
|
|
|
version = "0.5.0"
|
2019-06-26 15:19:40 +06: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 10:47:06 +06:00
|
|
|
documentation = "https://docs.rs/actix-ioframe/"
|
2019-06-26 15:19:40 +06:00
|
|
|
categories = ["network-programming", "asynchronous"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_ioframe"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-29 13:42:42 +06:00
|
|
|
actix-service = "1.0.1"
|
2019-12-11 10:23:01 +06:00
|
|
|
actix-codec = "0.2.0"
|
2019-12-29 13:42:42 +06:00
|
|
|
actix-utils = "1.0.4"
|
2019-12-11 11:28:09 +06:00
|
|
|
actix-rt = "1.0.0"
|
2019-12-29 13:42:42 +06:00
|
|
|
bytes = "0.5.3"
|
|
|
|
either = "1.5.3"
|
2020-03-12 04:23:04 +09:00
|
|
|
futures-sink = { version = "0.3.4", default-features = false }
|
|
|
|
futures-core = { version = "0.3.4", default-features = false }
|
2020-06-06 06:42:45 +09:00
|
|
|
pin-project = "0.4.17"
|
2019-06-26 15:19:40 +06:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-03-08 14:38:07 +09:00
|
|
|
actix-connect = "2.0.0-alpha.2"
|
2019-12-11 14:47:30 +06:00
|
|
|
actix-testing = "1.0.0"
|
2020-03-12 04:23:04 +09:00
|
|
|
futures-util = { version = "0.3.4", default-features = false }
|