- Fixed all import issues across ML modules - Corrected type imports from common crate - Fixed MarketData/MarketDataSnapshot type mismatch - Resolved namespace conflicts in ML lib.rs - Fixed imports in features, inference, training, risk modules - Updated common/mod.rs to use correct crate imports STATUS: Only ML crate fails compilation (12 errors) - 6 duplicate import errors from common modules - 5 type mismatch/casting errors to resolve - All other workspace crates compile successfully This represents 91% reduction in ML errors (133→12)
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[package]
|
|
name = "database"
|
|
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 = "Database schemas and utilities for Foxhunt HFT Trading System"
|
|
|
|
[dependencies]
|
|
# Database dependencies
|
|
sqlx = { workspace = true, features = ["migrate"] }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
rust_decimal = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Internal workspace crates
|
|
trading_engine = { workspace = true }
|
|
common = { path = "../common" }
|
|
|
|
# Configuration
|
|
config = { path = "../crates/config" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true } |