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
//! Configuration-tree loading and CLI helpers for layered config files.
//!
//! The high-level API loads `confique` schemas directly, while the lower-level
//! tree traversal helpers remain available for custom loaders.
//!
//! Use [`config::ConfigSchema`] with a `confique::Config` type when your schema owns an
//! include field. Use [`config::load_config`] to load the root config, all recursive
//! includes, `.env` values, and schema-declared environment values into the
//! final schema. Use [`config::build_config_figment`] or [`config::load_config_with_figment`]
//! when you need runtime source tracking. Use [`config::write_config_templates`] or
//! [`cli::ConfigCommand`] to generate example template files that mirror the same
//! include tree. Use [`config::write_config_schemas`] to generate root and section JSON
//! Schemas for editor completion and validation. Use
//! [`cli::install_shell_completion`] and [`cli::uninstall_shell_completion`] for reusable
//! shell completion lifecycle commands.
extern crate self as rust_config_tree;
pub use ;