rust/hg-core/src/config.rs
changeset 49936 2cd8352f7e11
parent 49935 da02e88b4850
child 49937 750409505286
equal deleted inserted replaced
49935:da02e88b4850 49936:2cd8352f7e11
     1 // config.rs
       
     2 //
       
     3 // Copyright 2020
       
     4 //      Valentin Gatien-Baron,
       
     5 //      Raphaël Gomès <rgomes@octobus.net>
       
     6 //
       
     7 // This software may be used and distributed according to the terms of the
       
     8 // GNU General Public License version 2 or any later version.
       
     9 
       
    10 //! Mercurial config parsing and interfaces.
       
    11 
       
    12 mod config;
       
    13 mod layer;
       
    14 mod plain_info;
       
    15 mod values;
       
    16 pub use config::{Config, ConfigSource, ConfigValueParseError};
       
    17 pub use layer::{ConfigError, ConfigOrigin, ConfigParseError};
       
    18 pub use plain_info::PlainInfo;