## Summary - **Total Agents**: 65 (24 coverage + 41 error fixes) - **Compilation Errors**: 194 → 0 ✅ - **New Tests**: 530+ tests (~17,500 lines) - **Success Rate**: 100% ## Phase 1: Test Coverage Expansion (Waves 1-3) - Wave 1-3: 24 agents deployed - Created comprehensive test suites across all modules - Added 530+ tests for baseline, advanced, and integration coverage ## Phase 2: Error Elimination (Waves 4-14) - Wave 4 (12 agents): Fixed 162 errors (Enum Display, tower util, borrow checker) - Wave 7 (1 agent): Fixed 52 ML proto errors (DataSource, Hyperparameters) - Wave 8 (1 agent): Fixed 33 Trading proto errors (SubmitOrderRequest) - Wave 12 (4 agents): Fixed 13 ComplianceRequirements field errors - Wave 13 (3 agents): Fixed 16 data crate test errors - Wave 14 (2 agents): Fixed final 2 data lib errors ## Infrastructure Improvements - Added MinIO Docker service for S3 E2E testing - Created S3Config::for_minio_testing() helper - Added storage test_helpers module - Fixed proto field mappings across all services - Added tower "util" feature for ServiceExt ## Key Error Patterns Fixed - Proto field name changes (120+ instances) - Enum Display trait usage (31 instances) - Borrow checker errors (20+ instances) - Missing methods/features (40+ instances) - Struct field additions (Order, ComplianceRequirements) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
97 lines
2.7 KiB
TOML
97 lines
2.7 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"
|
|
|
|
[dependencies]
|
|
# Core async and utilities - USE WORKSPACE
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
num_cpus.workspace = true
|
|
rand.workspace = true
|
|
rust_decimal.workspace = true
|
|
semver.workspace = true
|
|
num-traits.workspace = true
|
|
|
|
# gRPC - USE WORKSPACE
|
|
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
|
|
influxdb2.workspace = true
|
|
|
|
# Configuration - USE WORKSPACE
|
|
config.workspace = true
|
|
dotenvy.workspace = true
|
|
|
|
# Async and parallel processing - USE WORKSPACE
|
|
tokio-stream.workspace = true
|
|
async-stream.workspace = true
|
|
async-trait.workspace = true
|
|
rayon.workspace = true
|
|
crossbeam.workspace = true
|
|
dashmap.workspace = true
|
|
|
|
# Cryptography and security for TLS/mTLS
|
|
x509-parser = "0.16"
|
|
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
|
|
rustls = { version = "0.23", features = ["ring"], default-features = false } # Wave 75: TLS crypto provider
|
|
base64.workspace = true
|
|
sha2.workspace = true
|
|
|
|
# Internal workspace crates
|
|
trading_engine.workspace = true
|
|
risk.workspace = true
|
|
ml = { workspace = true, features = ["financial"] } # Minimal ML for backtesting
|
|
data.workspace = true
|
|
common = { workspace = true, features = ["database"] }
|
|
storage.workspace = true
|
|
model_loader = { path = "../../model_loader" } # Real model loading with S3 and caching
|
|
# Model functionality from ml-data
|
|
ml-data = { path = "../../ml-data" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test.workspace = true
|
|
tempfile.workspace = true
|
|
serial_test.workspace = true
|
|
tower.workspace = true # For ServiceExt in health_check_tests.rs
|
|
tower-test = "0.4" # For tower testing utilities
|
|
tli.workspace = true # For proto definitions in grpc_error_handling.rs
|
|
jsonwebtoken = "9.3" # For JWT token generation in grpc_error_handling.rs tests
|
|
|
|
[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 = []
|