24 lines
628 B
TOML
24 lines
628 B
TOML
[package]
|
|
name = "helios-remote-relay"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "helios-remote-relay"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
helios-common = { path = "../common" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = { version = "0.7", features = ["ws"] }
|
|
tower = "0.4"
|
|
tower-http = { version = "0.5", features = ["trace"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tokio-tungstenite = "0.21"
|
|
futures-util = "0.3"
|
|
dashmap = "5"
|
|
anyhow = "1"
|