Wave 14 Results: - Fixed 8 compilation errors in config examples - Fixed 18 adaptive-strategy test errors - Cleaned up 35+ clippy warnings - Comprehensive coverage analysis (330+ tests needed) - Identified ZERO coverage on life-safety systems Wave 15 Results: - Environment recovery (cleaned 12.7 GiB corrupted artifacts) - Successful test execution with cuDNN 9.13.1 - 362 tests executed: 67 passed (60.4%), 44 failed (39.6%) - Fixed DataStorageFormat enum match pattern Critical Issues Identified: - SIGSEGV in trading_engine performance benchmarks - Arithmetic overflow in risk/src/risk_types.rs:330 - 20+ tests blocked by Redis dependency - Kelly Criterion position sizing broken Files Modified: - config/examples/asset_classification_demo.rs (API updates) - adaptive-strategy/src/execution/mod.rs (Order construction) - adaptive-strategy/src/risk/ppo_position_sizer.rs (PPO constructors) - data/src/storage.rs (DataStorageFormat match fix) - risk/src/operations.rs (financial validation test) - risk-data/src/*.rs (clippy fixes) - config/src/*.rs (lock scope, lint allows) Test Status: 60.4% pass rate (production blockers identified) Next: Fix SIGSEGV, overflow, Redis mocking, achieve 95% coverage 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "risk-data"
|
|
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 = "Risk data repository for high-frequency trading risk management"
|
|
|
|
[dependencies]
|
|
# Core workspace dependencies
|
|
|
|
# Database dependencies
|
|
sqlx.workspace = true
|
|
redis.workspace = true
|
|
|
|
# Async runtime and utilities
|
|
async-trait.workspace = true
|
|
|
|
# Serialization and data handling
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
rust_decimal.workspace = true
|
|
|
|
# Risk calculation dependencies
|
|
|
|
# Logging and monitoring
|
|
tracing.workspace = true
|
|
|
|
# Error handling
|
|
thiserror.workspace = true
|
|
|
|
# Performance utilities
|
|
|
|
# Development and testing dependencies
|
|
[dev-dependencies]
|
|
# Note: These dev-dependencies are currently unused but kept for future testing needs
|
|
# tokio-test.workspace = true
|
|
# tempfile.workspace = true
|
|
# rstest.workspace = true
|
|
# proptest.workspace = true
|
|
# testcontainers.workspace = true # REMOVED - too heavy
|
|
|
|
[lints]
|
|
workspace = true |