Remove dependencies declared in 5 service Cargo.toml files that no
source code in those services references (verified by grepping for
use statements). Reduces dep-graph fan-out and unnecessary recompiles.
services/api/Cargo.toml −16 deps (async-trait, bytes,
const-oid, hdrhistogram,
hex, http-body, hyper,
hyper-util, num-traits,
rust_decimal, tokio-stream,
tower-layer, tower-service,
tracing-subscriber,
trading_engine, zeroize.
+ json feature added to
reqwest since trading_engine
was enabling it transitively)
services/trading_service/Cargo.toml −11 deps
services/backtesting_service/Cargo.toml −17 deps
services/trading_agent_service/Cargo.toml −6 deps
services/ml_training_service/Cargo.toml −4 deps
False positives kept (cargo-machete misses these because they're only
referenced in tonic-generated proto code, not in hand-written src):
- prost (`::prost::Message` derive in build.rs-generated code)
- tonic-prost (`tonic_prost::ProstCodec::default()` in generated tonic
clients/servers)
cargo check --workspace passes.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
98 lines
2.8 KiB
TOML
98 lines
2.8 KiB
TOML
[package]
|
|
name = "backtesting-service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Standalone backtesting service for Foxhunt HFT trading system"
|
|
|
|
[[bin]]
|
|
name = "backtesting-service"
|
|
path = "src/main.rs"
|
|
|
|
[[bench]]
|
|
name = "dbn_loading_benchmark"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "real_data_comprehensive_benchmark"
|
|
harness = false
|
|
|
|
[dependencies]
|
|
# Core async and utilities - USE WORKSPACE
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
rand.workspace = true
|
|
rust_decimal.workspace = true
|
|
num-traits.workspace = true
|
|
|
|
# gRPC - USE WORKSPACE
|
|
# NOTE: tonic-prost & prost used by generated proto code (ProstCodec, ::prost::Message)
|
|
tonic.workspace = true
|
|
tonic-prost.workspace = true
|
|
prost.workspace = true
|
|
tonic-health.workspace = true # gRPC health checking protocol
|
|
|
|
# HTTP server for health checks - USE WORKSPACE
|
|
axum.workspace = true
|
|
|
|
# Performance monitoring
|
|
prometheus.workspace = true
|
|
once_cell.workspace = true
|
|
|
|
# Database - USE WORKSPACE
|
|
sqlx.workspace = true
|
|
|
|
# Configuration - USE WORKSPACE
|
|
config.workspace = true
|
|
|
|
# Async and parallel processing - USE WORKSPACE
|
|
tokio-util.workspace = true
|
|
tokio-stream.workspace = true
|
|
async-trait.workspace = true
|
|
|
|
# Cryptography and security for TLS/mTLS
|
|
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
|
|
rustls = { version = "0.23", features = ["ring"], default-features = false } # Wave 75: TLS crypto provider
|
|
|
|
# DBN (Databento Binary) support for market data replay
|
|
dbn = "0.42.0"
|
|
|
|
# CLI argument parsing for validation tools
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
# Internal workspace crates
|
|
ml = { workspace = true, features = ["financial"] } # Minimal ML for backtesting
|
|
data.workspace = true
|
|
common = { workspace = true, features = ["database"] }
|
|
|
|
[dev-dependencies]
|
|
tokio-test.workspace = true
|
|
serial_test.workspace = true
|
|
tower.workspace = true # For ServiceExt in health_check_tests.rs
|
|
tower-test = "0.4" # For tower testing utilities
|
|
fxt.workspace = true # For proto definitions in grpc_error_handling.rs
|
|
jsonwebtoken = "9.3" # For JWT token generation in grpc_error_handling.rs tests
|
|
criterion = { version = "0.5", features = ["async_tokio"] } # Performance benchmarking
|
|
futures = "0.3" # For concurrent benchmark tests
|
|
tempfile = "3.8" # For temporary test directories
|
|
|
|
[build-dependencies]
|
|
# NOTE: Tonic 0.14+ uses tonic-prost-build instead of tonic-build
|
|
tonic-prost-build.workspace = true
|
|
prost-build.workspace = true
|
|
|
|
[features]
|
|
default = ["postgres", "influxdb"]
|
|
postgres = ["sqlx/postgres"]
|
|
influxdb = []
|
|
standalone = []
|
|
test-utils = []
|