actix-actorless-websockets/Cargo.toml

21 lines
669 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.2.5"
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]
2022-03-09 18:28:11 +00:00
members = ["examples/chat"]
2020-04-25 01:46:45 +00:00
[dependencies]
actix-codec = "0.5.0"
2022-03-09 18:28:11 +00:00
actix-http = { version = "3.0", default-features = false, features = ["ws"] }
actix-web = { version = "4.0", default-features = false }
futures-core = "0.3"
2022-03-10 05:11:41 +00:00
tokio = { version = "1", features = ["sync"] }