Deployed 12 parallel agents to fix compilation errors using common type system: ✅ Successfully Fixed: - Symbol type SQLx database traits implementation - u64 to i64 conversions for PostgreSQL compatibility - rust_decimal::Decimal ToPrimitive trait imports - Order struct field naming (order_id→id, timestamp→created_at) - Execution struct gross_value/net_value field initialization - TimeInForce::GoodTillCancelled → GoodTillCancel - Position struct field mappings - Database feature flags in Cargo.toml files - Storage crate common type system integration - TLI pure client architecture compliance - Services compilation issues Current Status: - Initial errors: 86 - Current errors: 3710 (increased due to import cascading) - Main issue: Import path resolution problems - 5 crates failing compilation Next Steps: - Fix import paths and module resolutions - Resolve duplicate Position definition - Fix async_trait and model_cache imports 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
892 B
TOML
47 lines
892 B
TOML
[package]
|
|
name = "trading-data"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Foxhunt Trading System"]
|
|
license = "MIT"
|
|
description = "Trading data repository layer for high-frequency trading system"
|
|
|
|
[dependencies]
|
|
# Database layer
|
|
sqlx.workspace = true
|
|
|
|
# Async runtime
|
|
tokio.workspace = true
|
|
async-trait.workspace = true
|
|
|
|
# Serialization
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
|
|
# Financial types
|
|
rust_decimal.workspace = true
|
|
rust_decimal_macros.workspace = true
|
|
|
|
# Time handling
|
|
chrono.workspace = true
|
|
|
|
# Unique identifiers
|
|
uuid.workspace = true
|
|
|
|
# Error handling
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
|
|
# Logging
|
|
tracing.workspace = true
|
|
|
|
# Internal workspace crates
|
|
common = { workspace = true, features = ["database"] }
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
tempfile = "3.0"
|
|
rstest = "0.18"
|
|
|
|
[features]
|
|
default = []
|
|
test-utils = [] |