1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/websockets/chat/Cargo.toml

21 lines
328 B
TOML
Raw Normal View History

[package]
name = "websocket-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
[[bin]]
name = "websocket-chat-server"
path = "src/main.rs"
[dependencies]
2022-02-18 02:44:53 +01:00
actix = "0.12"
actix-files = "0.6.0-beta.16"
actix-web = "4.0.0-rc.3"
actix-web-actors = "4.0.0-beta.12"
2019-03-29 23:08:35 +01:00
2022-02-18 02:44:53 +01:00
env_logger = "0.9"
log = "0.4"
rand = "0.8"
2020-09-12 17:49:45 +02:00
serde = "1"
serde_json = "1"