2019-04-10 22:06:27 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-framed"
|
2019-12-13 06:36:15 +00:00
|
|
|
version = "0.3.0"
|
2019-04-10 22:06:27 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix framed app server"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
|
|
documentation = "https://docs.rs/actix-framed/"
|
|
|
|
categories = ["network-programming", "asynchronous",
|
|
|
|
"web-programming::http-server",
|
|
|
|
"web-programming::websocket"]
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_framed"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-12-11 13:20:20 +00:00
|
|
|
actix-codec = "0.2.0"
|
2019-12-22 12:39:25 +00:00
|
|
|
actix-service = "1.0.1"
|
2019-12-25 16:17:22 +00:00
|
|
|
actix-router = "0.2.1"
|
2019-12-11 13:20:20 +00:00
|
|
|
actix-rt = "1.0.0"
|
2019-12-22 12:39:25 +00:00
|
|
|
actix-http = "1.0.1"
|
2019-04-10 22:06:27 +00:00
|
|
|
|
2019-12-13 06:36:15 +00:00
|
|
|
bytes = "0.5.3"
|
2019-11-21 06:17:01 +00:00
|
|
|
futures = "0.3.1"
|
|
|
|
pin-project = "0.4.6"
|
2019-04-10 22:06:27 +00:00
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-11 13:20:20 +00:00
|
|
|
actix-server = "1.0.0"
|
|
|
|
actix-connect = { version = "1.0.0", features=["openssl"] }
|
2019-12-13 06:36:15 +00:00
|
|
|
actix-http-test = { version = "1.0.0", features=["openssl"] }
|
|
|
|
actix-utils = "1.0.3"
|