a3b046c68f
Major changes: - Migrate Python/shell scripts to Rust modules: - analytics/extract.py → src/analytics/extract.rs (ReportExtractor) - analytics/analyze.py → src/analytics/analyze.rs (DealAnalyzer) - scripts/mqlcompile.sh → src/compile/mql_compiler.rs (MqlCompiler) - scripts/backtest_pipeline.sh → src/pipeline/backtest.rs (BacktestPipeline) - New modular structure: - src/models/ - Config, Deal, Metrics, Report structs - src/analytics/ - Report parsing and deal analysis - src/compile/ - MQL5 compilation via Wine - src/pipeline/ - 5-stage backtest orchestration - src/tools/ - 27 MCP tool definitions and handlers - Remove PyInstaller setup (now pure Rust) - Remove migrated shell scripts (backtest_pipeline.sh, mqlcompile.sh) - Add GitHub Actions CI/CD for macOS & Linux releases - Update all documentation for Rust architecture Binary size: 4.3MB (no Python dependencies) Tools: 27 MCP tools fully functional
28 lines
690 B
TOML
28 lines
690 B
TOML
[package]
|
|
name = "mt5-quant"
|
|
version = "1.27.0"
|
|
edition = "2021"
|
|
description = "MT5-Quant MCP Server - Exposes MT5 backtest and optimization tools via MCP"
|
|
authors = ["masdevid <masdevid@example.com>"]
|
|
|
|
[[bin]]
|
|
name = "mt5-quant"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
regex = "1.0"
|
|
dirs = "5.0"
|
|
walkdir = "2.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
encoding_rs = "0.8"
|
|
tempfile = "3.0"
|