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-12-21 15:49:28 +01:00
|
|
|
actix = { workspace = true }
|
|
|
|
actix-codec = { workspace = true }
|
|
|
|
actix-files = { workspace = true }
|
|
|
|
actix-web = { workspace = true }
|
|
|
|
actix-web-actors = { workspace = true }
|
2022-07-09 23:54:51 +02:00
|
|
|
awc = "3"
|
2022-02-18 02:44:53 +01:00
|
|
|
|
2022-12-30 17:25:40 +01:00
|
|
|
env_logger.workspace = true
|
2022-07-12 02:08:56 +02:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["std", "sink"] }
|
2022-12-30 17:25:40 +01:00
|
|
|
log.workspace = true
|
2022-02-18 02:44:53 +01:00
|
|
|
tokio = { version = "1.13.1", features = ["full"] }
|
|
|
|
tokio-stream = "0.1.8"
|