[package] name = "mt5-quant" version = "1.34.0" edition = "2021" description = "MCP server for MT5 strategy development on macOS/Linux" authors = ["masdevid "] license = "MIT" repository = "https://github.com/masdevid/mt5-quant" readme = "README.md" keywords = ["mt5", "mql5", "trading", "mcp", "backtest"] categories = ["finance", "development-tools"] homepage = "https://github.com/masdevid/mt5-quant" documentation = "https://github.com/masdevid/mt5-quant" [package.metadata] maintenance = { status = "actively-developed" } [[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"