Implemented features: - High-performance Rust extension with Redis persistence - Actor/player management with loadout, position, and state tracking - Banking system with deposit, withdraw, and transfer operations - Physical and virtual garage/locker systems for vehicle and equipment storage - Organization management with member tracking and permissions - Client-side UI with React-like state management - Server-side event-driven architecture with CBA Events - Security: Self-transfer prevention at multiple layers - Logging system with per-module log files - ICOM module for inter-server communication Co-Authored-By: Warp <agent@warp.dev>
20 lines
489 B
TOML
20 lines
489 B
TOML
[workspace]
|
|
members = [
|
|
"arma/server/extension",
|
|
"bin/icom",
|
|
"lib/models",
|
|
"lib/repositories",
|
|
"lib/services",
|
|
"lib/shared",
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.dependencies]
|
|
arma-rs = { version = "1.11.15", features = ["chrono", "serde_json", "uuid"] }
|
|
chrono = "0.4.42"
|
|
redis = "1.0.0-rc.1"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.145"
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
uuid = { version = "1.18.1", features = ["v4"] }
|