1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
//! # Gonfig
//!
//! A unified configuration management library for Rust that seamlessly integrates
//! environment variables, configuration files, and CLI arguments.
//!
//! ## Features
//!
//! - **Multiple Configuration Sources**: Environment variables, config files (JSON/YAML/TOML), and CLI arguments
//! - **Flexible Prefix Management**: Configure environment variable prefixes at struct and field levels
//! - **Derive Macro Support**: Easy configuration with `#[derive(Gonfig)]`
//! - **Merge Strategies**: Deep merge, replace, or append configurations
//! - **Type Safety**: Fully type-safe configuration with serde
//! - **Validation**: Built-in validation support for your configurations
//! - **Granular Control**: Enable/disable sources at struct or field level
//!
//! ## Quick Start
//!
//! ### Using the Derive Macro (Recommended)
//!
//! ```rust,no_run
//! use gonfig::Gonfig;
//! use serde::{Deserialize, Serialize};
//!
//! #[derive(Debug, Serialize, Deserialize, Gonfig)]
//! #[Gonfig(env_prefix = "APP")]
//! struct Config {
//! // Environment variable: APP_DATABASE_URL
//! database_url: String,
//!
//! // Environment variable: APP_PORT
//! port: u16,
//!
//! // Skip this field from configuration
//! #[skip]
//! #[serde(skip)]
//! runtime_data: Option<String>,
//! }
//!
//! fn main() -> gonfig::Result<()> {
//! std::env::set_var("APP_DATABASE_URL", "postgres://localhost/myapp");
//! std::env::set_var("APP_PORT", "8080");
//!
//! let config = Config::from_gonfig()?;
//! println!("Database: {}", config.database_url);
//! println!("Port: {}", config.port);
//! Ok(())
//! }
//! ```
//!
//! ### Using ConfigBuilder for Advanced Configuration
//!
//! ```rust,no_run
//! use gonfig::{ConfigBuilder, MergeStrategy};
//! use serde::Deserialize;
//!
//! #[derive(Debug, Deserialize)]
//! struct AppConfig {
//! name: String,
//! port: u16,
//! debug: bool,
//! }
//!
//! fn main() -> gonfig::Result<()> {
//! let config: AppConfig = ConfigBuilder::new()
//! .with_merge_strategy(MergeStrategy::Deep)
//! .with_env("APP")
//! .with_file("config.json")?
//! .with_cli()
//! .build()?;
//!
//! println!("Loaded configuration: {:?}", config);
//! Ok(())
//! }
//! ```
//!
//! ## Configuration Sources
//!
//! ### Environment Variables
//!
//! Environment variables are automatically mapped to struct fields using configurable prefixes:
//!
//! ```rust,no_run
//! use gonfig::{Environment, ConfigBuilder};
//! use serde::Deserialize;
//!
//! #[derive(Deserialize)]
//! struct Config {
//! database_url: String,
//! port: u16,
//! }
//!
//! fn main() -> gonfig::Result<()> {
//! std::env::set_var("MYAPP_DATABASE_URL", "postgres://localhost/db");
//! std::env::set_var("MYAPP_PORT", "3000");
//!
//! let config: Config = ConfigBuilder::new()
//! .with_env("MYAPP")
//! .build()?;
//! Ok(())
//! }
//! ```
//!
//! ### Configuration Files
//!
//! Support for JSON, YAML, and TOML configuration files:
//!
//! ```rust,no_run
//! use gonfig::{ConfigBuilder, ConfigFormat};
//! use serde::Deserialize;
//!
//! #[derive(Deserialize)]
//! struct Config {
//! database: DatabaseConfig,
//! server: ServerConfig,
//! }
//!
//! #[derive(Deserialize)]
//! struct DatabaseConfig {
//! url: String,
//! pool_size: u32,
//! }
//!
//! #[derive(Deserialize)]
//! struct ServerConfig {
//! host: String,
//! port: u16,
//! }
//!
//! fn main() -> gonfig::Result<()> {
//! let config: Config = ConfigBuilder::new()
//! .with_file("app.yaml")?
//! .build()?;
//! Ok(())
//! }
//! ```
//!
//! ### CLI Arguments
//!
//! Integrate with clap for command-line argument parsing:
//!
//! ```rust,no_run
//! use gonfig::{ConfigBuilder, Cli};
//! use serde::Deserialize;
//! use clap::Parser;
//!
//! #[derive(Parser, Deserialize)]
//! struct Config {
//! #[arg(long, env = "DATABASE_URL")]
//! database_url: String,
//!
//! #[arg(short, long, default_value = "8080")]
//! port: u16,
//! }
//!
//! fn main() -> gonfig::Result<()> {
//! let config: Config = ConfigBuilder::new()
//! .with_cli()
//! .build()?;
//! Ok(())
//! }
//! ```
//!
//! ## Derive Attributes
//!
//! ### Struct-level attributes:
//! - `#[Gonfig(env_prefix = "PREFIX")]` - Set environment variable prefix
//! - `#[Gonfig(allow_cli)]` - Enable CLI argument support
//! - `#[Gonfig(allow_config)]` - Enable config file support
//!
//! ### Field-level attributes:
//! - `#[gonfig(env_name = "CUSTOM_NAME")]` - Override environment variable name
//! - `#[gonfig(cli_name = "custom-name")]` - Override CLI argument name
//! - `#[skip]` or `#[skip_gonfig]` - Skip this field from all configuration sources
//!
//! ## Environment Variable Naming
//!
//! Environment variables follow a consistent hierarchical pattern:
//!
//! - **With prefix**: `{PREFIX}_{STRUCT_NAME}_{FIELD_NAME}`
//! - Example: prefix `APP`, struct `Config`, field `database_url` → `APP_CONFIG_DATABASE_URL`
//! - **Without prefix**: `{STRUCT_NAME}_{FIELD_NAME}`
//! - Example: struct `Config`, field `database_url` → `CONFIG_DATABASE_URL`
//! - **With field override**: Uses the exact override value
//! - Example: `#[gonfig(env_name = "DB_URL")]` → `DB_URL`
//! - **Nested structs**: Each level adds to the path
//! - Example: `APP_PARENT_CHILD_FIELD`
/// Configuration builder for assembling multiple configuration sources.
///
/// The builder module provides the [`ConfigBuilder`] type for combining different
/// configuration sources with customizable merge strategies and validation.
/// Command-line interface integration using clap.
///
/// Provides the [`Cli`] type for parsing command-line arguments and integrating
/// them with other configuration sources.
/// Configuration file parsing and handling.
///
/// Supports JSON, YAML, and TOML configuration files through the [`Config`] type
/// and [`ConfigFormat`] enum.
/// Environment variable configuration source.
///
/// The [`Environment`] type handles reading and parsing environment variables
/// with configurable prefixes and separators.
/// Error types and result aliases for configuration operations.
///
/// Provides comprehensive error handling through the [`Error`] enum and
/// convenient [`Result`] type alias.
/// Configuration merging strategies and utilities.
///
/// Implements different merge strategies like deep merge, replace, and append
/// through the [`MergeStrategy`] enum and related types.
/// Core traits and types for configuration sources.
///
/// Defines the [`ConfigSource`] trait that all configuration sources implement
/// and the [`Source`] enum for representing different source types.
pub use Gonfig;
pub use ConfigBuilder;
pub use Cli;
pub use ;
pub use Environment;
pub use ;
pub use MergeStrategy;
pub use ;
/// A configuration prefix used for environment variables
;