2019-03-17 21:47:20 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2019-12-20 12:36:48 +01:00
|
|
|
version = "2.0.0"
|
2019-03-17 21:47:20 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "Actix actors support for actix web framework."
|
|
|
|
readme = "README.md"
|
2019-03-28 21:46:26 +01:00
|
|
|
keywords = ["actix", "http", "web", "framework", "async"]
|
2019-03-17 21:47:20 +01: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"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_web_actors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-02-27 04:46:29 +01:00
|
|
|
actix = "0.10.0-alpha.1"
|
2020-03-11 19:03:50 +01:00
|
|
|
actix-web = "3.0.0-alpha.1"
|
2020-05-07 19:33:55 +02:00
|
|
|
actix-http = "2.0.0-alpha.3"
|
2019-12-15 17:45:38 +01:00
|
|
|
actix-codec = "0.2.0"
|
|
|
|
bytes = "0.5.2"
|
|
|
|
futures = "0.3.1"
|
|
|
|
pin-project = "0.4.6"
|
2019-03-17 21:47:20 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-12-15 17:45:38 +01:00
|
|
|
actix-rt = "1.0.0"
|
2019-03-18 06:02:03 +01:00
|
|
|
env_logger = "0.6"
|