diff rust/hg-core/src/config.rs @ 46602:a687a7f27951

rust: Move config value parsing functions to a new module Differential Revision: https://phab.mercurial-scm.org/D10021
author Simon Sapin <simon.sapin@octobus.net>
date Wed, 17 Feb 2021 20:24:04 +0100
parents bc08c2331f99
children ebdef6283798
line wrap: on
line diff
--- a/rust/hg-core/src/config.rs	Tue Feb 16 13:08:37 2021 +0100
+++ b/rust/hg-core/src/config.rs	Wed Feb 17 20:24:04 2021 +0100
@@ -11,5 +11,6 @@
 
 mod config;
 mod layer;
+mod values;
 pub use config::{Config, ConfigValueParseError};
 pub use layer::{ConfigError, ConfigParseError};