Phase 2 references for the host-agent Dune adapter, moved out of volatile /tmp
into docs/reference-repos/ (per Commander). Three upstream projects, .git +
node_modules + compiled binaries stripped (16MB source). Nested AI-instruction
files (.claude/, CLAUDE.md) removed so they don't pollute Corrosion sessions.
- icehunter/ dune-admin (Go+React) — 4 control planes; SETUP_DOCKER.md is the
closest analog to our agent's Dune docker control plane (compose
lifecycle, docker logs, RabbitMQ-via-exec, dune Postgres schema)
- adainrivers/ Rust/Tauri desktop — SSH+k8s BattleGroup control, maintenance
daemon, in-game admin console (Rust idiom reference)
- the4rchangel/ Node web UI replacing battlegroup.bat — matches the Commander's
Hyper-V self-host path + game-config schema
See docs/reference-repos/README.md for the full index + how we use each.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.0 KiB
TOML
33 lines
1.0 KiB
TOML
[package]
|
|
name = "dune-server-service"
|
|
version = "0.3.16"
|
|
edition = "2021"
|
|
publish = false
|
|
description = "Dune dedicated-server management daemon: scheduled maintenance + admin command API."
|
|
|
|
[[bin]]
|
|
name = "dune-server-service"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "process", "fs", "io-util", "sync", "time"] }
|
|
axum = { version = "0.7", default-features = false, features = ["http1", "json", "tokio", "query"] }
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
tokio-postgres = "0.7"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
chrono-tz = "0.10"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
|
|
base64 = "0.22"
|
|
once_cell = "1"
|
|
regex = "1"
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
cron = "0.12"
|