mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
21 lines
328 B
TOML
21 lines
328 B
TOML
[package]
|
|
name = "websocket-example"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "websocket-chat-server"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
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"
|
|
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
rand = "0.8"
|
|
serde = "1"
|
|
serde_json = "1"
|