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