2019-03-17 20:47:20 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2022-01-04 15:37:14 +00:00
|
|
|
version = "4.0.0-beta.10"
|
2019-03-17 20:47:20 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2021-02-10 12:10:03 +00:00
|
|
|
description = "Actix actors support for Actix Web"
|
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"
|
2021-06-26 15:33:36 +00:00
|
|
|
repository = "https://github.com/actix/actix-web"
|
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]
|
2021-06-22 13:00:28 +00:00
|
|
|
actix = { version = "0.12.0", default-features = false }
|
2021-11-16 22:41:24 +00:00
|
|
|
actix-codec = "0.4.1"
|
2022-01-04 15:34:52 +00:00
|
|
|
actix-http = "3.0.0-beta.18"
|
2022-01-04 15:35:08 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.19", default-features = false }
|
2021-01-03 23:47:04 +00:00
|
|
|
|
|
|
|
bytes = "1"
|
2021-01-04 11:27:32 +00:00
|
|
|
bytestring = "1"
|
2021-01-03 23:47:04 +00:00
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
2021-12-04 19:40:47 +00:00
|
|
|
pin-project-lite = "0.2"
|
2021-12-27 18:54:10 +00:00
|
|
|
tokio = { version = "1.8.4", features = ["sync"] }
|
2019-03-17 20:47:20 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-29 12:45:48 +00:00
|
|
|
actix-rt = "2.2"
|
2022-01-04 15:37:48 +00:00
|
|
|
actix-test = "0.1.0-beta.11"
|
2022-01-04 15:35:21 +00:00
|
|
|
awc = { version = "3.0.0-beta.18", default-features = false }
|
2021-04-02 07:26:59 +00:00
|
|
|
|
2021-11-16 23:07:08 +00:00
|
|
|
env_logger = "0.9"
|
2021-01-03 23:47:04 +00:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|