[package] name = "uo-link-sidecar" version = "0.1.0" edition = "2021" description = "Rust sidecar for the ServUO uo-link bridge: terminates the loopback link to the shard and exposes WebSocket + REST to the website." [dependencies] tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "signal"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } anyhow = "1" axum = { version = "0.7", features = ["ws"] } sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] } toml = "0.8" getrandom = "0.2" chrono = { version = "0.4", default-features = false, features = ["std", "clock"] } # Speaking the Windows Service Control Manager's startup handshake, and logging somewhere other # than the stdout a service does not have. Declared per target so Cargo neither resolves nor builds # either crate for Linux — the Linux binary is byte-for-byte unaffected by Windows service support. [target.'cfg(windows)'.dependencies] windows-service = "0.8" tracing-appender = "0.2" [profile.release] opt-level = 2