Files
foxhunt/testing/service-integration/Cargo.toml
jgrusewski 9c3d741a08 refactor: restructure repo — crates/, bin/, testing/ layout
Move 17 library crates into crates/, CLI binary into bin/fxt,
consolidate 10 test crates into testing/, split config crate
from deployment config files.

Root directory reduced from 38+ to ~17 directories.
All Cargo.toml paths and build.rs proto refs updated.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:56:00 +01:00

60 lines
1.2 KiB
TOML

[package]
name = "integration_tests"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
publish = false
[dependencies]
# Async runtime
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
futures.workspace = true
# gRPC client
tonic = { workspace = true }
tonic-prost.workspace = true
prost = { workspace = true }
# HTTP client for metrics scraping
reqwest = { workspace = true, features = ["json"] }
# Serialization
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
# JWT for authentication
jsonwebtoken.workspace = true
# Error handling
anyhow.workspace = true
thiserror.workspace = true
# Logging
tracing.workspace = true
# UUID
uuid = { workspace = true, features = ["v4"] }
# Time handling
chrono = { workspace = true }
# Environment variables
dotenvy = "0.15"
# Constructor hooks for test initialization
ctor = "0.2"
# DBN data for real market data
dbn = "0.22"
rust_decimal = { workspace = true }
# Backtesting service for DBN data source
backtesting_service = { path = "../../services/backtesting_service" }
[dev-dependencies]
# Test utilities
serial_test.workspace = true
[build-dependencies]
tonic-prost-build.workspace = true