1
0
mirror of https://github.com/actix/examples synced 2025-02-08 20:06:07 +01:00
examples/websockets/chat/Cargo.toml

21 lines
328 B
TOML
Raw Normal View History

[package]
name = "websocket-example"
2022-02-02 01:45:20 +00:00
version = "1.0.0"
2022-02-02 01:43:51 +00:00
edition = "2021"
[[bin]]
name = "websocket-chat-server"
path = "src/main.rs"
[dependencies]
2022-02-18 01:44:53 +00: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 15:08:35 -07:00
2022-02-18 01:44:53 +00:00
env_logger = "0.9"
log = "0.4"
rand = "0.8"
2020-09-12 16:49:45 +01:00
serde = "1"
serde_json = "1"