2018-04-13 03:18:42 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket-example"
|
2019-12-15 17:55:54 +01:00
|
|
|
version = "2.0.0"
|
2018-04-13 03:18:42 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-03-29 23:08:35 +01:00
|
|
|
edition = "2018"
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
[[bin]]
|
2018-09-24 10:57:36 +02:00
|
|
|
name = "websocket-chat-server"
|
2018-04-13 03:18:42 +02:00
|
|
|
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"
|
2020-12-14 12:30:06 +01:00
|
|
|
env_logger = "0.8"
|
2020-09-12 17:49:45 +02:00
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|