diff rust/hg-core/src/lib.rs @ 46433:4b381dbbf8b7

rhg: centralize parsing of `--rev` CLI arguments This new module will be the place to implement more of the revset language when we do so. Differential Revision: https://phab.mercurial-scm.org/D9873
author Simon Sapin <simon.sapin@octobus.net>
date Tue, 26 Jan 2021 18:31:46 +0100
parents cabc5e9366c5
children 2e2033081274
line wrap: on
line diff
--- a/rust/hg-core/src/lib.rs	Mon Jan 25 18:25:26 2021 +0100
+++ b/rust/hg-core/src/lib.rs	Tue Jan 26 18:31:46 2021 +0100
@@ -28,6 +28,7 @@
 pub use revlog::*;
 pub mod config;
 pub mod operations;
+pub mod revset;
 pub mod utils;
 
 use crate::utils::hg_path::{HgPathBuf, HgPathError};