# Test Cargo.toml for data module compilation validation [package] name = "data" version = "0.1.0" edition = "2021" authors = ["Foxhunt Trading System"] description = "Market data ingestion and broker integration for high-frequency trading systems" license = "MIT OR Apache-2.0" [dependencies] # Core async runtime tokio = { version = "1.40", features = ["full"] } async-trait = "0.1" futures = "0.3" # Serialization serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # Error handling anyhow = "1.0" thiserror = "1.0" # Logging tracing = "0.1" # Time handling chrono = { version = "0.4", features = ["serde"] } # Networking reqwest = { version = "0.12", features = ["json", "rustls-tls"] } tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] } tungstenite = "0.24" url = "2.5" # Security base64 = "0.22" hmac = "0.12" sha2 = "0.10" # FIX protocol quickfix = "0.8" # Utilities uuid = { version = "1.10", features = ["v4", "serde"] } bytes = "1.7" # Optional dependencies criterion = { version = "0.5", optional = true } wiremock = { version = "0.6", optional = true } # Types (local path) types = { path = "../crates/common/types" } [dev-dependencies] tokio-test = "0.4" tempfile = "3.12" [features] default = ["market-data"] market-data = [] benchmarks = ["criterion"] testing = ["wiremock"]