actix-actorless-websockets/Cargo.toml

27 lines
780 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"
2020-09-27 17:45:58 +00:00
version = "0.1.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"
2020-04-25 19:24:31 +00:00
repository = "https://git.asonix.dog/asonix/actix-actorless-websockets"
2020-04-25 19:21:17 +00:00
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-09-27 17:45:58 +00:00
actix-http = { version = "2.0.0", default-features = false }
actix-web = { version = "3.0.2", default-features = false }
2020-04-25 01:46:45 +00:00
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"] }
2020-09-27 17:45:58 +00:00
tokio-util = { version = "0.3", features = ["codec"] }