actix-actorless-websockets/examples/chat/Cargo.toml

18 lines
416 B
TOML
Raw Permalink Normal View History

2020-04-25 01:46:45 +00:00
[package]
2020-04-25 18:19:09 +00:00
name = "chat"
2020-04-25 01:46:45 +00:00
version = "0.1.0"
authors = ["asonix <asonix@asonix.dog>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-03-09 18:28:11 +00:00
actix-rt = "2.6"
actix-web = "4.0.1"
actix-ws = { version = "0.2.0", path = "../.." }
2020-04-25 01:46:45 +00:00
anyhow = "1.0"
futures = "0.3"
2020-04-25 18:19:09 +00:00
log = "0.4"
pretty_env_logger = "0.4"
2022-03-09 18:28:11 +00:00
tokio = { version = "1", features = ["sync"] }