diff -r cc6faec62cb7 -r dca9cb99971c rust/rhg/src/commands/root.rs --- a/rust/rhg/src/commands/root.rs Mon Dec 14 13:47:44 2020 +0100 +++ b/rust/rhg/src/commands/root.rs Mon Dec 14 14:59:23 2020 +0100 @@ -2,7 +2,7 @@ use crate::error::CommandError; use crate::ui::Ui; use format_bytes::format_bytes; -use hg::operations::FindRoot; +use hg::operations::find_root; use hg::utils::files::get_bytes_from_path; pub const HELP_TEXT: &str = " @@ -21,7 +21,7 @@ impl Command for RootCommand { fn run(&self, ui: &Ui) -> Result<(), CommandError> { - let path_buf = FindRoot::new().run()?; + let path_buf = find_root()?; let bytes = get_bytes_from_path(path_buf);