Files
foxhunt/testing/e2e/Cargo.toml
jgrusewski e047c1eea3 refactor: rename all service crates to kebab-case
Rename 7 service binaries from snake_case to kebab-case to match
K8s deployment names. Update Cargo.toml package/bin names, K8s
manifest S3 paths and commands, and cross-crate dependency keys.

- api_gateway → api-gateway
- trading_service → trading-service
- broker_gateway_service → broker-gateway
- ml_training_service → ml-training-service
- backtesting_service → backtesting-service
- trading_agent_service → trading-agent-service
- data_acquisition_service → data-acquisition-service

broker-gateway gets an explicit [lib] name = "broker_gateway_service"
since its new package name maps to broker_gateway (not the original
broker_gateway_service used in source code). All other services map
correctly with Rust's automatic hyphen-to-underscore conversion.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 22:06:00 +01:00

151 lines
3.2 KiB
TOML

[package]
name = "foxhunt_e2e"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core async runtime
tokio = { workspace = true }
tokio-test = "0.4"
tokio-stream = "0.1"
# gRPC and protobuf
tonic = { version = "0.14", features = ["transport", "tls-ring", "tls-webpki-roots"] }
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json", "bigdecimal"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time and UUID
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
# JWT authentication
jsonwebtoken = "9.3"
# Environment variables
dotenvy = "0.15"
# Numerical
rust_decimal = { version = "1.32", features = ["serde-float"] }
bigdecimal = "0.4"
# Utilities
futures = "0.3"
rand = "0.8"
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
# CLI
clap = { version = "4.0", features = ["derive"] }
# Testing
assert_matches = "1.5"
# Benchmarking
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
hdrhistogram = "7.5"
# Local dependencies
trading_engine = { path = "../../crates/trading_engine" }
data = { path = "../../crates/data" }
ml = { path = "../../crates/ml" }
ml-training-service = { path = "../../services/ml_training_service" }
risk = { path = "../../crates/risk" }
config = { path = "../../crates/config" }
common = { path = "../../crates/common" }
# DBN data parsing
dbn = "0.22"
# Candle for ML
candle-core = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
[build-dependencies]
tonic-prost-build = "0.14"
[[test]]
name = "full_trading_flow_e2e"
path = "tests/full_trading_flow_e2e.rs"
[[test]]
name = "ml_inference_e2e"
path = "tests/ml_inference_e2e.rs"
[[test]]
name = "risk_management_e2e"
path = "tests/risk_management_e2e.rs"
[[test]]
name = "config_hot_reload_e2e"
path = "tests/config_hot_reload_e2e.rs"
[[test]]
name = "simplified_integration_test"
path = "tests/simplified_integration_test.rs"
[[test]]
name = "multi_service_integration"
path = "tests/multi_service_integration.rs"
[[test]]
name = "error_handling_recovery"
path = "tests/error_handling_recovery.rs"
[[test]]
name = "performance_load_tests"
path = "tests/performance_load_tests.rs"
[[test]]
name = "ml_training_tls_test"
path = "tests/ml_training_tls_test.rs"
[[test]]
name = "dqn_training_test"
path = "tests/dqn_training_test.rs"
[[test]]
name = "mamba2_training_test"
path = "tests/mamba2_training_test.rs"
[[test]]
name = "e2e_ml_training_test"
path = "tests/e2e_ml_training_test.rs"
[[test]]
name = "e2e_ml_paper_trading_test"
path = "tests/e2e_ml_paper_trading_test.rs"
[[test]]
name = "e2e_ml_backtesting_test"
path = "tests/e2e_ml_backtesting_test.rs"
[[test]]
name = "ml_pipeline_integration_test"
path = "tests/ml_pipeline_integration_test.rs"
[[test]]
name = "five_service_orchestration_test"
path = "tests/five_service_orchestration_test.rs"
[[bench]]
name = "e2e_latency_benchmark"
path = "benches/e2e_latency_benchmark.rs"
harness = false