15 lines
467 B
TOML
15 lines
467 B
TOML
[package]
|
|
name = "observer-relay"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Tiny WebSocket relay that syncs the Observer Effect doomsday clock from the Handler's control panel to every player's screen."
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7", features = ["ws"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "signal"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = true
|