1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 06:04:40 +01:00

35 lines
958 B
TOML
Raw Permalink Normal View History

2019-03-17 13:47:20 -07:00
[package]
name = "actix-web-actors"
2021-06-26 16:33:36 +01:00
version = "4.0.0-beta.6"
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-28 13:46:26 -07:00
keywords = ["actix", "http", "web", "framework", "async"]
2019-03-17 13:47:20 -07:00
homepage = "https://actix.rs"
2021-06-26 16:33:36 +01:00
repository = "https://github.com/actix/actix-web"
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]
actix = { version = "0.12.0", default-features = false }
2021-04-21 11:14:22 +01:00
actix-codec = "0.4.0"
2021-06-26 16:33:36 +01:00
actix-http = "3.0.0-beta.8"
actix-web = { version = "4.0.0-beta.8", default-features = false }
bytes = "1"
bytestring = "1"
futures-core = { version = "0.3.7", default-features = false }
2020-10-25 11:41:44 +01:00
pin-project = "1.0.0"
tokio = { version = "1", features = ["sync"] }
2019-03-17 13:47:20 -07:00
[dev-dependencies]
actix-rt = "2.2"
actix-test = "0.1.0-beta.3"
2021-06-26 16:33:36 +01:00
awc = { version = "3.0.0-beta.7", default-features = false }
2021-02-07 03:54:58 +00:00
env_logger = "0.8"
futures-util = { version = "0.3.7", default-features = false }