2019-03-17 21:47:20 +01:00
|
|
|
[package]
|
|
|
|
name = "actix-web-actors"
|
2024-08-07 05:01:20 +02:00
|
|
|
version = "4.3.1+deprecated"
|
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"]
|
2024-08-07 05:01:20 +02:00
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2019-03-17 21:47:20 +01:00
|
|
|
|
2024-06-10 04:39:06 +02:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"actix::*",
|
|
|
|
"actix_http::*",
|
|
|
|
"actix_web::*",
|
|
|
|
"bytes::*",
|
|
|
|
"bytestring::*",
|
|
|
|
"futures_core::*",
|
|
|
|
]
|
2019-03-17 21:47:20 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2022-03-02 18:53:47 +01:00
|
|
|
actix = { version = ">=0.12, <0.14", default-features = false }
|
2022-02-15 21:49:10 +01:00
|
|
|
actix-codec = "0.5"
|
2022-03-02 18:53:47 +01:00
|
|
|
actix-http = "3"
|
|
|
|
actix-web = { version = "4", default-features = false }
|
2021-01-04 00:47:04 +01:00
|
|
|
|
|
|
|
bytes = "1"
|
2021-01-04 12:27:32 +01:00
|
|
|
bytestring = "1"
|
2022-12-18 02:34:48 +01:00
|
|
|
futures-core = { version = "0.3.17", default-features = false }
|
2021-12-04 20:40:47 +01:00
|
|
|
pin-project-lite = "0.2"
|
2023-02-26 04:47:25 +01:00
|
|
|
tokio = { version = "1.24.2", features = ["sync"] }
|
2022-10-30 20:47:49 +01:00
|
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
2019-03-17 21:47:20 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-29 14:45:48 +02:00
|
|
|
actix-rt = "2.2"
|
2022-07-24 03:13:46 +02:00
|
|
|
actix-test = "0.1"
|
2022-03-08 17:51:40 +01:00
|
|
|
awc = { version = "3", default-features = false }
|
2022-06-26 18:45:02 +02:00
|
|
|
actix-web = { version = "4", features = ["macros"] }
|
|
|
|
|
2024-03-04 00:43:54 +01:00
|
|
|
env_logger = "0.11"
|
2023-07-02 02:09:15 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
|
2022-06-26 18:45:02 +02:00
|
|
|
mime = "0.3"
|
2024-07-07 04:54:00 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|