2019-04-10 22:06:27 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-framed"
|
2019-05-12 17:18:02 +00:00
|
|
|
version = "0.2.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"
|
|
|
|
workspace =".."
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_framed"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
actix-codec = "0.1.2"
|
2019-05-12 15:34:51 +00:00
|
|
|
actix-service = "0.4.0"
|
|
|
|
actix-utils = "0.4.0"
|
2019-04-10 22:06:27 +00:00
|
|
|
actix-router = "0.1.2"
|
2019-04-12 18:28:57 +00:00
|
|
|
actix-rt = "0.2.2"
|
2019-05-12 17:18:02 +00:00
|
|
|
actix-http = "0.2.0"
|
2019-05-12 15:34:51 +00:00
|
|
|
actix-server-config = "0.1.1"
|
2019-04-10 22:06:27 +00:00
|
|
|
|
|
|
|
bytes = "0.4"
|
|
|
|
futures = "0.1.25"
|
|
|
|
log = "0.4"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-05-12 17:18:02 +00:00
|
|
|
actix-server = { version = "0.5.0", features=["ssl"] }
|
|
|
|
actix-connect = { version = "0.2.0", features=["ssl"] }
|
|
|
|
actix-http-test = { version = "0.2.0", features=["ssl"] }
|