[package] name = "ml_strategy" version.workspace = true edition.workspace = true rust-version.workspace = true authors.workspace = true license.workspace = true repository.workspace = true homepage.workspace = true documentation.workspace = true publish.workspace = true keywords.workspace = true categories.workspace = true description = "Shared ML Strategy Infrastructure (ONE SINGLE SYSTEM for trading and backtesting)" [dependencies] # Core async and utilities tokio.workspace = true futures.workspace = true async-trait.workspace = true # Serialization serde = { workspace = true, features = ["derive"] } serde_json.workspace = true # Error handling thiserror.workspace = true anyhow.workspace = true # Logging and tracing tracing.workspace = true # Common types (no circular dependency) common = { path = "../common" } # ML infrastructure (real ensemble, inference, etc.) ml = { path = "../ml" } [dev-dependencies] tokio-test.workspace = true