[package] name = "finnhub-provider-service" version = "0.1.0" edition = "2021" [dependencies] # Web Service axum = "0.7" tokio = { version = "1.0", features = ["full"] } tower-http = { version = "0.5.0", features = ["cors"] } # Shared Contracts common-contracts = { path = "../common-contracts" } # Generic MCP Client reqwest = { version = "0.12.24", features = ["json"] } url = "2.5.2" chrono = { version = "0.4.38", features = ["serde"] } rust_decimal = "1.35.0" rust_decimal_macros = "1.35.0" itertools = "0.13.0" # Message Queue (NATS) async-nats = "0.33" futures = "0.3" futures-util = "0.3.31" # Data Persistence Client # Concurrency & Async async-trait = "0.1.80" dashmap = "5.5" uuid = { version = "1.6", features = ["v4", "serde"] } # Serialization serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" # Logging & Telemetry tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Configuration config = "0.14" secrecy = { version = "0.8", features = ["serde"] } # Error Handling thiserror = "1.0.61" anyhow = "1.0"