rust-config-tree 0.2.5

Recursive include tree utilities for layered configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! JSON Schema generation and section-schema splitting.
//!
//! `schemars` produces one full schema for the root config type. This module
//! removes constraints that do not fit partial config files, strips internal
//! marker metadata from the emitted JSON, and optionally emits separate schemas
//! for marked nested sections.

pub mod adapt;
pub mod generate;
pub mod marker;
pub mod paths;
pub mod reference;
pub mod target;
pub mod write;