1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websocket-chat-broker/Cargo.toml

25 lines
406 B
TOML
Raw Normal View History

[package]
2020-04-09 02:54:28 +02:00
name = "websocket-chat-broker"
version = "0.1.0"
2020-04-09 02:54:28 +02:00
authors = [
"Chris Ricketts <chris.ricketts@steribar.com>",
"Rob Ede <robjtede@icloud.com>",
]
2019-07-11 11:02:25 +02:00
edition = "2018"
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
2020-04-09 02:54:28 +02:00
actix = "0.9"
2020-09-12 17:49:45 +02:00
actix-broker = "0.3"
2020-04-09 02:54:28 +02:00
actix-files = "0.2"
2020-09-12 17:49:45 +02:00
actix-rt = "1"
actix-web = "2"
actix-web-actors = "2"
2020-04-09 02:54:28 +02:00
env_logger = "0.7"
futures = "0.3"
log = "0.4"
rand = "0.7"