cfgmatic-files 2.2.0

Configuration file discovery and reading with multiple format support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Configuration merge behavior and options.
//!
//! This module re-exports merge functionality from cfgmatic-merge
//! for backward compatibility and convenience.

// Re-export all merge types from cfgmatic-merge
pub use cfgmatic_merge::{ArrayMergeStrategy, MergeBehavior};

/// Options for configuration merging.
///
/// This is a thin wrapper around cfgmatic-merge's `MergeOptions`
/// that provides the same API for backward compatibility.
pub type MergeOptions = cfgmatic_merge::MergeOptions;