1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

25 lines
418 B
TOML
Raw Normal View History

[package]
name = "websocket-example"
2019-12-15 22:55:54 +06:00
version = "2.0.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-29 15:08:35 -07:00
edition = "2018"
[[bin]]
name = "websocket-chat-server"
path = "src/main.rs"
[dependencies]
2019-12-15 22:55:54 +06:00
actix-rt = "1.0.0"
2019-12-20 22:30:26 +06:00
actix = "0.9.0"
2019-12-25 20:48:33 +04:00
actix-web = "2.0.0"
2019-12-20 22:30:26 +06:00
actix-web-actors = "2.0.0"
2019-12-25 20:48:33 +04:00
actix-files = "0.2.1"
2019-03-29 15:08:35 -07:00
2020-04-08 01:18:52 +09:00
rand = "0.7"
2019-12-15 22:55:54 +06:00
bytes = "0.5.3"
byteorder = "1.1"
2019-12-15 22:55:54 +06:00
futures = "0.3.1"
2020-04-08 01:18:52 +09:00
env_logger = "0.7"
serde = "1.0"
serde_json = "1.0"