2019-03-17 13:47:20 -07:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2021-04-02 09:55:35 +01:00
|
|
|
version = "4.0.0-beta.4"
|
2019-03-17 13:47:20 -07:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2021-02-10 12:10:03 +00:00
|
|
|
description = "Actix actors support for Actix Web"
|
2019-03-17 13:47:20 -07:00
|
|
|
readme = "README.md"
|
2019-03-28 13:46:26 -07:00
|
|
|
keywords = ["actix", "http", "web", "framework", "async"]
|
2019-03-17 13:47:20 -07:00
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
|
|
|
documentation = "https://docs.rs/actix-web-actors/"
|
2020-07-14 11:19:56 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-03-17 13:47:20 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_web_actors"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-04 03:39:29 -08:00
|
|
|
actix = { version = "0.11.0-beta.3", default-features = false }
|
2021-01-04 07:47:04 +08:00
|
|
|
actix-codec = "0.4.0-beta.1"
|
2021-04-17 15:24:18 +01:00
|
|
|
actix-http = "3.0.0-beta.6"
|
2021-04-17 15:28:13 +01:00
|
|
|
actix-web = { version = "4.0.0-beta.6", default-features = false }
|
2021-01-04 07:47:04 +08:00
|
|
|
|
|
|
|
bytes = "1"
|
2021-01-04 11:27:32 +00:00
|
|
|
bytestring = "1"
|
2021-01-04 07:47:04 +08:00
|
|
|
futures-core = { version = "0.3.7", default-features = false }
|
2020-10-25 11:41:44 +01:00
|
|
|
pin-project = "1.0.0"
|
2021-01-04 07:47:04 +08:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
2019-03-17 13:47:20 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-29 05:45:48 -07:00
|
|
|
actix-rt = "2.2"
|
2021-04-02 09:55:35 +01:00
|
|
|
actix-test = "0.1.0-beta.1"
|
2021-04-02 08:26:59 +01:00
|
|
|
|
2021-04-17 15:30:31 +01:00
|
|
|
awc = { version = "3.0.0-beta.5", default-features = false }
|
2021-02-07 03:54:58 +00:00
|
|
|
env_logger = "0.8"
|
2021-01-04 07:47:04 +08:00
|
|
|
futures-util = { version = "0.3.7", default-features = false }
|