1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websockets/chat/Cargo.toml

24 lines
380 B
TOML
Raw Normal View History

[package]
name = "websocket-example"
2019-12-15 17:55:54 +01:00
version = "2.0.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-29 23:08:35 +01:00
edition = "2018"
[[bin]]
name = "websocket-chat-server"
path = "src/main.rs"
[dependencies]
2020-09-12 17:49:45 +02:00
actix = "0.10"
actix-web = "3"
actix-web-actors = "3"
actix-files = "0.3"
2019-03-29 23:08:35 +01:00
2020-04-07 18:18:52 +02:00
rand = "0.7"
2020-09-12 17:49:45 +02:00
bytes = "0.5"
byteorder = "1.3"
futures = "0.3"
env_logger = "0.8"
2020-09-12 17:49:45 +02:00
serde = "1"
serde_json = "1"