2019-03-17 20:47:20 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2020-09-11 12:50:10 +00:00
|
|
|
version = "3.0.0"
|
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/"
|
2020-07-14 02:19:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-03-17 20:47:20 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_web_actors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-11 11:09:52 +00:00
|
|
|
actix = "0.10.0"
|
2020-09-11 12:50:10 +00:00
|
|
|
actix-web = { version = "3.0.0", default-features = false }
|
|
|
|
actix-http = "2.0.0"
|
2020-08-24 09:13:35 +00:00
|
|
|
actix-codec = "0.3.0"
|
2019-12-15 16:45:38 +00:00
|
|
|
bytes = "0.5.2"
|
2020-05-18 02:46:02 +00:00
|
|
|
futures-channel = { version = "0.3.5", default-features = false }
|
|
|
|
futures-core = { version = "0.3.5", default-features = false }
|
2020-06-05 21:44:14 +00:00
|
|
|
pin-project = "0.4.17"
|
2019-03-17 20:47:20 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-09-11 12:50:10 +00:00
|
|
|
actix-rt = "1.1.1"
|
2020-05-07 18:33:29 +00:00
|
|
|
env_logger = "0.7"
|
2020-05-18 02:46:02 +00:00
|
|
|
futures-util = { version = "0.3.5", default-features = false }
|