## Critical Investigation Results **DISASTER CONFIRMED**: Agents discovered THREE type sources instead of ONE: 1. foxhunt-common-types/ (SHOULD NOT EXIST - still active!) 2. trading_engine/src/types/ (massive duplication) 3. common/src/types.rs (depends on competing crate) ## Evidence of Violations - foxhunt-common-types still in workspace members (line 86) - common/Cargo.toml depends on foxhunt-common-types (line 48) - 48+ duplicate type definitions across OrderSide, OrderStatus, OrderType - Compilation failures due to competing imports ## Immediate Action Required - Choose ONE canonical source - DELETE foxhunt-common-types completely - Consolidate ALL types to single source - Fix THREE-WAY import chaos 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
82 lines
1.6 KiB
TOML
82 lines
1.6 KiB
TOML
[package]
|
|
name = "backtesting"
|
|
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 = "Backtesting engine for Foxhunt HFT trading strategies"
|
|
|
|
[dependencies]
|
|
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
|
rust_decimal = { workspace = true }
|
|
rust_decimal_macros = { workspace = true }
|
|
|
|
|
|
trading_engine.workspace = true
|
|
ml.workspace = true
|
|
common = { path = "../common" }
|
|
|
|
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
|
|
dashmap = { workspace = true }
|
|
crossbeam = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
|
|
|
|
statrs = { workspace = true }
|
|
ndarray = { workspace = true }
|
|
polars = { version = "0.35", features = ["lazy"] } # Direct dependency for backtesting data processing
|
|
|
|
|
|
csv = { workspace = true }
|
|
bincode = { workspace = true }
|
|
|
|
|
|
prometheus = { workspace = true }
|
|
|
|
|
|
sys-info = "0.9"
|
|
fastrand = "2.0"
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
proptest = { workspace = true }
|
|
criterion = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "replay_performance"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "hft_latency_benchmark"
|
|
harness = false
|
|
|
|
[features]
|
|
default = []
|