2018-04-13 03:18:42 +02:00
|
|
|
[package]
|
|
|
|
name = "websocket"
|
2019-12-16 06:23:36 +01:00
|
|
|
version = "2.0.0"
|
2018-04-13 03:18:42 +02:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
2019-03-18 13:31:32 +01:00
|
|
|
edition = "2018"
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
[[bin]]
|
2018-09-24 10:57:36 +02:00
|
|
|
name = "websocket-server"
|
2018-04-13 03:18:42 +02:00
|
|
|
path = "src/main.rs"
|
|
|
|
|
2019-07-11 10:48:14 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "websocket-client"
|
|
|
|
path = "src/client.rs"
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-20 17:30:26 +01:00
|
|
|
actix = "0.9.0"
|
2019-12-16 06:23:36 +01:00
|
|
|
actix-codec = "0.2.0"
|
2019-12-25 17:48:33 +01:00
|
|
|
actix-web = "2.0.0"
|
2019-12-20 17:30:26 +01:00
|
|
|
actix-web-actors = "2.0.0"
|
2019-12-25 17:48:33 +01:00
|
|
|
actix-files = "0.2.1"
|
2019-12-16 06:23:36 +01:00
|
|
|
actix-rt = "1.0.0"
|
2019-12-20 17:30:26 +01:00
|
|
|
awc = "1.0.1"
|
2019-03-18 13:31:32 +01:00
|
|
|
env_logger = "0.6"
|
2019-12-16 06:23:36 +01:00
|
|
|
futures = "0.3.1"
|
|
|
|
bytes = "0.5.3"
|