ARCHITECTURAL ACHIEVEMENTS: ✅ Zero compilation errors across entire workspace ✅ Complete elimination of circular dependencies ✅ Proper configuration architecture with centralized config crate ✅ Fixed all type mismatches and missing fields ✅ Restored proper crate structure (config at root level) MAJOR FIXES: - Fixed 19 critical data crate compilation errors - Resolved configuration struct field mismatches - Fixed enum variant naming (CSV → Csv) - Corrected type conversions (FromPrimitive, compression types) - Fixed HashMap key types (u32 vs usize) - Resolved TLOBProcessor constructor issues WORKSPACE STATUS: - All services compile successfully - Trading Service: ✅ Ready - Backtesting Service: ✅ Ready - ML Training Service: ✅ Ready - TLI Client: ✅ Ready Only documentation warnings remain (3,316 warnings to be addressed) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
73 lines
1.5 KiB
TOML
73 lines
1.5 KiB
TOML
[package]
|
|
name = "e2e_tests"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Core async runtime
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tokio-test = "0.4"
|
|
tokio-stream = "0.1"
|
|
|
|
# gRPC and protobuf
|
|
tonic = "0.12"
|
|
prost = "0.13"
|
|
prost-types = "0.13"
|
|
|
|
# Database
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json", "bigdecimal"] }
|
|
|
|
# Serialization
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# Error handling
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Time and UUID
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.0", features = ["v4", "serde"] }
|
|
|
|
# Numerical
|
|
rust_decimal = { version = "1.32", features = ["serde-float"] }
|
|
bigdecimal = "0.4"
|
|
|
|
# Utilities
|
|
futures = "0.3"
|
|
rand = "0.8"
|
|
|
|
# Testing
|
|
assert_matches = "1.5"
|
|
|
|
# Local dependencies
|
|
trading_engine = { path = "../../trading_engine" }
|
|
data = { path = "../../data" }
|
|
ml = { path = "../../ml" }
|
|
risk = { path = "../../risk" }
|
|
config = { path = "../../config" }
|
|
common = { path = "../../common" }
|
|
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12"
|
|
|
|
[[test]]
|
|
name = "full_trading_flow_e2e"
|
|
path = "tests/full_trading_flow_e2e.rs"
|
|
|
|
[[test]]
|
|
name = "ml_inference_e2e"
|
|
path = "tests/ml_inference_e2e.rs"
|
|
|
|
[[test]]
|
|
name = "risk_management_e2e"
|
|
path = "tests/risk_management_e2e.rs"
|
|
|
|
[[test]]
|
|
name = "config_hot_reload_e2e"
|
|
path = "tests/config_hot_reload_e2e.rs" |