1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/websocket-chat/Cargo.toml

25 lines
421 B
TOML
Raw Normal View History

[package]
name = "websocket-example"
2019-12-15 17:55:54 +01:00
version = "2.0.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-29 23:08:35 +01:00
edition = "2018"
[[bin]]
name = "websocket-chat-server"
path = "src/main.rs"
[dependencies]
2019-12-15 17:55:54 +01:00
actix-rt = "1.0.0"
2019-12-20 17:30:26 +01:00
actix = "0.9.0"
actix-web = "2.0.0-rc"
actix-web-actors = "2.0.0"
actix-files = "0.2.0"
2019-03-29 23:08:35 +01:00
rand = "0.6"
2019-12-15 17:55:54 +01:00
bytes = "0.5.3"
byteorder = "1.1"
2019-12-15 17:55:54 +01:00
futures = "0.3.1"
2019-03-29 23:08:35 +01:00
env_logger = "0.6"
serde = "1.0"
serde_json = "1.0"