1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-12 19:57:38 +01:00

32 lines
932 B
TOML
Raw Normal View History

2019-03-17 13:47:20 -07:00
[package]
name = "actix-web-actors"
2020-05-08 03:33:29 +09:00
version = "3.0.0-alpha.1"
2019-03-17 13:47:20 -07:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix actors support for actix web framework."
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/"
license = "MIT/Apache-2.0"
edition = "2018"
[lib]
name = "actix_web_actors"
path = "src/lib.rs"
[dependencies]
2020-05-08 03:33:29 +09:00
actix = "0.10.0-alpha.2"
actix-web = { version = "3.0.0-alpha.3", default-features = false }
2020-05-21 15:22:42 +09:00
actix-http = "2.0.0-alpha.4"
2019-12-15 22:45:38 +06:00
actix-codec = "0.2.0"
bytes = "0.5.2"
futures-channel = { version = "0.3.5", default-features = false }
futures-core = { version = "0.3.5", default-features = false }
pin-project = "0.4.17"
2019-03-17 13:47:20 -07:00
[dev-dependencies]
2019-12-15 22:45:38 +06:00
actix-rt = "1.0.0"
2020-05-08 03:33:29 +09:00
env_logger = "0.7"
futures-util = { version = "0.3.5", default-features = false }