ai-code-battle/bots/zone-driver/Cargo.toml
jedarden cdbc4c0cbd Implement ZoneDriverBot: zone-herding elimination strategy
ZoneDriver weaponizes the shrinking zone to force enemy eliminations:
- Computes zone boundary and identifies "kill band" (zone edge-2 to edge)
- Positions units to block enemy escape routes inward
- Herds enemies toward zone edge for passive eliminations
- Prioritizes survival for own bots near zone boundary

Novel approach: turns zone from map feature into active weapon.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-17 01:16:21 -04:00

20 lines
360 B
TOML

[package]
name = "zone-driver-bot"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.release]
strip = true
opt-level = "s"
lto = "thin"