1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-web-actors/Cargo.toml

38 lines
1 KiB
TOML
Raw Normal View History

2019-03-17 20:47:20 +00:00
[package]
name = "actix-web-actors"
version = "4.3.0"
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"
license = "MIT OR Apache-2.0"
2023-07-02 00:09:15 +00:00
edition = "2021"
2019-03-17 20:47:20 +00:00
[lib]
name = "actix_web_actors"
path = "src/lib.rs"
[dependencies]
2022-03-02 17:53:47 +00:00
actix = { version = ">=0.12, <0.14", default-features = false }
2022-02-15 20:49:10 +00:00
actix-codec = "0.5"
2022-03-02 17:53:47 +00:00
actix-http = "3"
actix-web = { version = "4", default-features = false }
bytes = "1"
bytestring = "1"
futures-core = { version = "0.3.17", default-features = false }
2021-12-04 19:40:47 +00:00
pin-project-lite = "0.2"
2023-02-26 03:47:25 +00:00
tokio = { version = "1.24.2", features = ["sync"] }
tokio-util = { version = "0.7", features = ["codec"] }
2019-03-17 20:47:20 +00:00
[dev-dependencies]
actix-rt = "2.2"
2022-07-24 01:13:46 +00:00
actix-test = "0.1"
2022-03-08 16:51:40 +00:00
awc = { version = "3", default-features = false }
actix-web = { version = "4", features = ["macros"] }
2024-03-03 23:43:54 +00:00
env_logger = "0.11"
2023-07-02 00:09:15 +00:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
mime = "0.3"