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

32 lines
928 B
TOML
Raw Normal View History

2019-03-17 20:47:20 +00:00
[package]
name = "actix-web-actors"
2019-03-26 19:50:51 +00:00
version = "0.1.0-alpha.1"
2019-03-17 20:47:20 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix actors support for actix web framework."
readme = "README.md"
keywords = ["http", "web", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/actix-web-actors/"
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
workspace = ".."
edition = "2018"
[lib]
name = "actix_web_actors"
path = "src/lib.rs"
[dependencies]
actix-web = { path=".." }
actix = { git = "https://github.com/actix/actix.git" }
2019-03-26 19:50:51 +00:00
actix-http = { path = "../actix-http/" }
2019-03-18 05:02:03 +00:00
actix-codec = "0.1.1"
2019-03-17 20:47:20 +00:00
bytes = "0.4"
futures = "0.1"
[dev-dependencies]
2019-03-18 05:02:03 +00:00
env_logger = "0.6"
2019-03-26 19:50:51 +00:00
actix-http = { path = "../actix-http/", features=["ssl"] }
actix-http-test = { path = "../test-server/", features=["ssl"] }