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