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