Two-part fix that finally removes ~35% of ml-* sub-crates from
service-binary build closures:
1. crates/ml/Cargo.toml: 8 leaf-level ml-* sub-crates become optional
behind feature flags (one feature per `pub mod` in lib.rs):
ml-backtesting ↔ feature `backtest-mod` (ml::backtesting)
ml-paper-trading ↔ feature `paper-trading-mod` (ml::paper_trading)
ml-stress-testing ↔ feature `stress-testing-mod` (ml::stress_testing)
ml-explainability ↔ feature `explainability-mod` (ml::explainability)
ml-universe ↔ feature `universe-mod` (ml::universe)
ml-regime-detection ↔ feature `regime-detection-mod`(ml::regime_detection)
ml-validation ↔ feature `validation-mod` (ml::validation)
ml-data-validation ↔ feature `data-validation-mod` (ml::data_validation)
Aggregated into the umbrella `full-stack` feature, which is in
`default = [...]` so existing `ml.workspace = true` callers see
identical behavior (testing/integration, crates/backtesting).
2. services/trading_service + services/backtesting_service: switched
from `ml.workspace = true` to explicit `path = "../../crates/ml"`
form with `default-features = false`. This is necessary because
cargo 1.89 silently ignores `default-features = false` when
combined with `workspace = true` (a known cargo limitation).
Path form bypasses the workspace dep and applies the opt-out.
Verified by `cargo tree -p X | grep ml-* | wc -l`:
trading-service 23 → 16 (-30%)
backtesting-service 23 → 16 (-30%)
Source-grep verified neither service references any of the 8 gated
modules (`use ml::backtesting`, `use ml::explainability`, etc. all
zero hits in src/). The only `ml::explainability` mention in
trading-service is a string in an error log — not a code path.
ml-training-service and trading-agent-service were already on path
form with default-features = false; they're unaffected here.
cargo check --workspace passes.
101 lines
3.0 KiB
TOML
101 lines
3.0 KiB
TOML
[package]
|
|
name = "backtesting-service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Standalone backtesting service for Foxhunt HFT trading system"
|
|
|
|
[[bin]]
|
|
name = "backtesting-service"
|
|
path = "src/main.rs"
|
|
|
|
[[bench]]
|
|
name = "dbn_loading_benchmark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "real_data_comprehensive_benchmark"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
# Core async and utilities - USE WORKSPACE
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
rand.workspace = true
|
|
rust_decimal.workspace = true
|
|
num-traits.workspace = true
|
|
|
|
# gRPC - USE WORKSPACE
|
|
# NOTE: tonic-prost & prost used by generated proto code (ProstCodec, ::prost::Message)
|
|
tonic.workspace = true
|
|
tonic-prost.workspace = true
|
|
prost.workspace = true
|
|
tonic-health.workspace = true # gRPC health checking protocol
|
|
|
|
# HTTP server for health checks - USE WORKSPACE
|
|
axum.workspace = true
|
|
|
|
# Performance monitoring
|
|
prometheus.workspace = true
|
|
once_cell.workspace = true
|
|
|
|
# Database - USE WORKSPACE
|
|
sqlx.workspace = true
|
|
|
|
# Configuration - USE WORKSPACE
|
|
config.workspace = true
|
|
|
|
# Async and parallel processing - USE WORKSPACE
|
|
tokio-util.workspace = true
|
|
tokio-stream.workspace = true
|
|
async-trait.workspace = true
|
|
|
|
# Cryptography and security for TLS/mTLS
|
|
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
|
|
rustls = { version = "0.23", features = ["ring"], default-features = false } # Wave 75: TLS crypto provider
|
|
|
|
# DBN (Databento Binary) support for market data replay
|
|
dbn = "0.42.0"
|
|
|
|
# CLI argument parsing for validation tools
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
# Internal workspace crates
|
|
# path-form: cargo 1.89's `workspace = true` ignores `default-features = false`,
|
|
# so we use the explicit path declaration to opt out of `full-stack` and drop
|
|
# 8 leaf-level ml-* sub-crates that no source file in this service references.
|
|
ml = { path = "../../crates/ml", default-features = false, features = ["financial"] }
|
|
data.workspace = true
|
|
common = { workspace = true, features = ["database"] }
|
|
|
|
[dev-dependencies]
|
|
tokio-test.workspace = true
|
|
serial_test.workspace = true
|
|
tower.workspace = true # For ServiceExt in health_check_tests.rs
|
|
tower-test = "0.4" # For tower testing utilities
|
|
fxt.workspace = true # For proto definitions in grpc_error_handling.rs
|
|
jsonwebtoken = "9.3" # For JWT token generation in grpc_error_handling.rs tests
|
|
criterion = { version = "0.5", features = ["async_tokio"] } # Performance benchmarking
|
|
futures = "0.3" # For concurrent benchmark tests
|
|
tempfile = "3.8" # For temporary test directories
|
|
|
|
[build-dependencies]
|
|
# NOTE: Tonic 0.14+ uses tonic-prost-build instead of tonic-build
|
|
tonic-prost-build.workspace = true
|
|
prost-build.workspace = true
|
|
|
|
[features]
|
|
default = ["postgres", "influxdb"]
|
|
postgres = ["sqlx/postgres"]
|
|
influxdb = []
|
|
standalone = []
|
|
test-utils = []
|