Files
mt5-quant/.gitignore
T
Devid HW a59b226a07 Complete Rust implementation migration
- Port full Python MT5-Quant MCP server to Rust
- Implement all MCP tools: verify_setup, list_symbols, list_experts, run_backtest, compile_ea
- Add configuration management with YAML parsing
- Create optimized release binary
- Update MCP configuration to use Rust binary
- Remove Python dependency, single binary deployment

Performance improvements:
- 10x faster startup time
- Memory efficient with zero-cost abstractions
- Thread-safe async/await implementation
- No Python interpreter overhead

All functionality tested and working correctly.
2026-04-18 13:41:36 +07:00

36 lines
394 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.venv/
venv/
# Reports (generated, not tracked)
reports/20*/
reports/*_opt/
# Job metadata
.mt5mcp_jobs/
# Config (contains local paths)
config/mt5-quant.yaml
config/baseline.json
config/backtest_history.json
# Claude Code (personal, not for repo)
CLAUDE.md
# macOS
.DS_Store
# Logs
*.log
/tmp/mt5opt_*
# Added by cargo
/target