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

23 lines
333 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]
2020-09-12 16:49:45 +01:00
actix = "0.10"
actix-web = "3"
actix-web-actors = "3"
actix-files = "0.3"
2019-03-29 15:08:35 -07:00
2020-04-08 01:18:52 +09:00
rand = "0.7"
2020-09-12 16:49:45 +01:00
bytes = "0.5"
byteorder = "1.3"
futures = "0.3"
env_logger = "0.8"
2020-09-12 16:49:45 +01:00
serde = "1"
serde_json = "1"