aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs/hg_driver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository/vcs/hg_driver.rs')
-rw-r--r--crates/shirabe/src/repository/vcs/hg_driver.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/shirabe/src/repository/vcs/hg_driver.rs b/crates/shirabe/src/repository/vcs/hg_driver.rs
index 56efd514..f4e02685 100644
--- a/crates/shirabe/src/repository/vcs/hg_driver.rs
+++ b/crates/shirabe/src/repository/vcs/hg_driver.rs
@@ -17,11 +17,11 @@ use shirabe_php_shim::{PhpMixed, RuntimeException, dirname, is_dir, is_writable,
#[derive(Debug)]
pub struct HgDriver {
- pub(crate) inner: VcsDriverBase,
- pub(crate) tags: Option<IndexMap<String, String>>,
- pub(crate) branches: Option<IndexMap<String, String>>,
- pub(crate) root_identifier: Option<String>,
- pub(crate) repo_dir: String,
+ inner: VcsDriverBase,
+ tags: Option<IndexMap<String, String>>,
+ branches: Option<IndexMap<String, String>>,
+ root_identifier: Option<String>,
+ repo_dir: String,
}
impl HgDriver {