actix-actorless-websockets/Cargo.toml

27 lines
671 B
TOML
Raw Normal View History

2020-04-25 01:46:45 +00:00
[package]
2020-04-25 18:19:09 +00:00
name = "actix-ws"
2020-04-25 19:21:17 +00:00
description = "Websockets for the Actix runtime, without Actors"
version = "0.1.0-alpha.0"
2020-04-25 01:46:45 +00:00
authors = ["asonix <asonix@asonix.dog>"]
2020-04-25 19:21:17 +00:00
readme = "README.md"
license = "MIT/Apache-2.0"
2020-04-25 01:46:45 +00:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020-04-25 18:19:09 +00:00
[workspace]
members = [
"examples/chat"
]
2020-04-25 01:46:45 +00:00
[dependencies]
2020-04-25 18:19:09 +00:00
actix-http = "2.0.0-alpha.2"
2020-04-25 01:46:45 +00:00
actix-rt = "1.1.0"
actix-web = "3.0.0-alpha.1"
anyhow = "1.0"
2020-04-25 18:19:09 +00:00
bytes = "0.5"
2020-04-25 01:46:45 +00:00
futures = "0.3"
2020-04-25 18:19:09 +00:00
pin-project = "0.4.9"
thiserror = "1.0"
tokio = { version = "0.2", features = ["sync", "stream", "io-util"] }
tokio-util = { version = "0.2", features = ["codec"] }