🚀 MAJOR FIX: Parallel agents eliminate 330+ compilation errors
- Fixed all FromPrimitive imports across codebase - Resolved all common::types import paths (219+ files) - Fixed Volume constructor issues (type alias vs struct) - Resolved all E0308 type mismatches - Fixed ExecutionReport and BrokerError imports - Added missing Price arithmetic assignment traits - Fixed Decimal to_f64 method calls with ToPrimitive - Eliminated all re-exports per architectural rules Errors reduced from 436 to 106 - 76% reduction achieved
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
use async_trait::async_trait;
|
||||
use chrono::{DateTime, Utc};
|
||||
use common::types::Decimal;
|
||||
use rust_decimal::Decimal;
|
||||
use sqlx::{Pool, Postgres, Row};
|
||||
use uuid::Uuid;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
use async_trait::async_trait;
|
||||
use chrono::{DateTime, Utc};
|
||||
use common::types::{Decimal, Volume};
|
||||
use common::{Decimal, Volume};
|
||||
use sqlx::{Pool, Postgres, Row};
|
||||
use uuid::Uuid;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
use async_trait::async_trait;
|
||||
use chrono::{DateTime, Utc};
|
||||
use common::types::Decimal;
|
||||
use rust_decimal::Decimal;
|
||||
use sqlx::{Pool, Postgres, Row};
|
||||
use uuid::Uuid;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user