1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/websockets/echo/Cargo.toml

28 lines
513 B
TOML
Raw Normal View History

2022-02-18 02:44:53 +01:00
[package]
name = "websocket"
version = "1.0.0"
edition = "2021"
[[bin]]
name = "websocket-server"
path = "src/main.rs"
[[bin]]
name = "websocket-client"
path = "src/client.rs"
[dependencies]
2022-03-04 04:45:03 +01:00
actix = "0.13"
2022-02-18 02:44:53 +01:00
actix-codec = "0.5"
2022-02-25 22:07:22 +01:00
actix-files = "0.6"
2022-02-18 02:44:53 +01:00
actix-rt = "2"
2022-02-25 22:07:22 +01:00
actix-web = "4"
2022-03-04 04:45:03 +01:00
actix-web-actors = "4.1"
2022-07-09 23:54:51 +02:00
awc = "3"
2022-02-18 02:44:53 +01:00
env_logger = "0.9"
2022-03-06 01:15:16 +01:00
futures-util = { version = "0.3.7", default-features = false, features = ["std", "sink"] }
2022-02-18 02:44:53 +01:00
log = "0.4"
tokio = { version = "1.13.1", features = ["full"] }
tokio-stream = "0.1.8"