2018-04-13 03:18:42 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket-example"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-03-29 23:08:35 +01:00
|
|
|
workspace = ".."
|
|
|
|
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]
|
2019-06-06 12:47:40 +02:00
|
|
|
actix = "0.8.2"
|
|
|
|
actix-web = "1.0.0"
|
|
|
|
actix-web-actors = "1.0.0"
|
|
|
|
actix-files = "0.1.1"
|
2019-03-29 23:08:35 +01:00
|
|
|
|
|
|
|
rand = "0.6"
|
2018-04-13 03:18:42 +02:00
|
|
|
bytes = "0.4"
|
|
|
|
byteorder = "1.1"
|
2019-03-29 23:08:35 +01:00
|
|
|
futures = "0.1.25"
|
2018-04-13 03:18:42 +02:00
|
|
|
tokio-io = "0.1"
|
2019-03-29 23:08:35 +01:00
|
|
|
env_logger = "0.6"
|
2018-04-13 03:18:42 +02:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|