basic bot

This commit is contained in:
2026-01-21 20:37:17 -07:00
commit ae7f57d3df
21 changed files with 1354 additions and 0 deletions

20
protossbot/Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "rustbot"
version = "0.1.0"
edition = "2021"
[dependencies]
rsbwapi = "3.6.3"
axum = { version = "0.7", features = ["ws"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio-tungstenite = "0.24"
futures-util = "0.3"
tower-http = { version = "0.6", features = ["fs", "cors"] }
rand = "0.8"
[profile.release]
opt-level = 3
lto = true