2019-03-17 20:47:20 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2019-06-28 04:54:23 +00:00
|
|
|
version = "1.0.1"
|
2019-03-17 20:47:20 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix actors support for actix web framework."
|
|
|
|
readme = "README.md"
|
2019-03-28 20:46:26 +00:00
|
|
|
keywords = ["actix", "http", "web", "framework", "async"]
|
2019-03-17 20:47:20 +00:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
|
|
documentation = "https://docs.rs/actix-web-actors/"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
|
|
workspace = ".."
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_web_actors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-29 23:22:57 +00:00
|
|
|
actix = "0.8.3"
|
2019-06-28 04:54:23 +00:00
|
|
|
actix-web = "1.0.2"
|
2019-06-16 16:10:22 +00:00
|
|
|
actix-http = "0.2.4"
|
2019-03-28 20:46:26 +00:00
|
|
|
actix-codec = "0.1.2"
|
2019-03-17 20:47:20 +00:00
|
|
|
bytes = "0.4"
|
2019-03-28 20:46:26 +00:00
|
|
|
futures = "0.1.25"
|
2019-03-17 20:47:20 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-03-18 05:02:03 +00:00
|
|
|
env_logger = "0.6"
|
2019-05-12 17:18:02 +00:00
|
|
|
actix-http-test = { version = "0.2.0", features=["ssl"] }
|