ig-client 0.12.1

This crate provides a client for the IG Markets API
Documentation
1
2
3
4
5
6
7
8
9
10
//! Database configuration for the storage layer.
//!
//! The `DatabaseConfig` data type is defined in `crate::application::config`
//! (alongside the other `*Config` types, so [`crate::application::config::Config`]
//! can embed it without an application → storage dependency). It is re-exported
//! here to preserve the historical `crate::storage::config::DatabaseConfig`
//! public path and to keep the storage-layer's pool construction co-located with
//! the config it consumes.

pub use crate::application::config::DatabaseConfig;