0bc410f613
- Add 9 debugging/diagnostics tools for Wine/MT5 crash investigation - Update server.json with v1.30.0 and MCP package config - Update README.md with 85 tools count and debugging section - Update docs/MCP_TOOLS.md documentation - Enhance release workflow with MCP packaging job - Clean up mcp-package directory (now built in CI)
31 lines
783 B
TOML
31 lines
783 B
TOML
[package]
|
|
name = "mt5-quant"
|
|
version = "1.31.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"
|
|
roxmltree = "0.21.1"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
base64 = "0.22"
|