mirror of
https://github.com/actix/examples
synced 2024-11-24 06:43:00 +01:00
23 lines
333 B
TOML
23 lines
333 B
TOML
[package]
|
|
name = "websocket-example"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "websocket-chat-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
actix = "0.10"
|
|
actix-web = "3"
|
|
actix-web-actors = "3"
|
|
actix-files = "0.3"
|
|
|
|
rand = "0.7"
|
|
bytes = "0.5"
|
|
byteorder = "1.3"
|
|
futures = "0.3"
|
|
env_logger = "0.8"
|
|
serde = "1"
|
|
serde_json = "1"
|