add ws client and server packages
This commit is contained in:
28
server_ws/Cargo.toml
Normal file
28
server_ws/Cargo.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[package]
|
||||
name = "circle_server_ws"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4"
|
||||
actix-web-actors = "4"
|
||||
actix = "0.13"
|
||||
env_logger = "0.10"
|
||||
log = "0.4"
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
redis = { version = "0.25.0", features = ["tokio-comp"] } # For async Redis with Actix
|
||||
uuid = { version = "1.6", features = ["v4", "serde"] }
|
||||
tokio = { version = "1", features = ["macros", "rt-multi-thread"] } # For polling interval
|
||||
chrono = { version = "0.4", features = ["serde"] } # For timestamps
|
||||
rhai_client = { path = "/Users/timurgordon/code/git.ourworld.tf/herocode/rhaj/src/client" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-tungstenite = { version = "0.23.0", features = ["native-tls"] }
|
||||
futures-util = "0.3" # For StreamExt and SinkExt on WebSocket stream
|
||||
url = "2.5.0" # For parsing WebSocket URL
|
||||
circle_client_ws = { path = "../client_ws" }
|
||||
uuid = { version = "1.6", features = ["v4", "serde"] } # For e2e example, if it still uses Uuid directly for req id
|
||||
Reference in New Issue
Block a user