Mercurial > public > mercurial-scm > hg
diff rust/rhg/src/commands/status.rs @ 52299:b422acba55f1
rust-dirstate: remove star exports
This makes the crate's imports confusing and muddies the discovery of the
code.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Mon, 04 Nov 2024 11:07:05 +0100 |
parents | 51a350a22d0c |
children | 04b9a56c2d25 |
line wrap: on
line diff
--- a/rust/rhg/src/commands/status.rs Mon Nov 04 11:00:58 2024 +0100 +++ b/rust/rhg/src/commands/status.rs Mon Nov 04 11:07:05 2024 +0100 @@ -14,9 +14,8 @@ use clap::Arg; use format_bytes::format_bytes; use hg::config::Config; -use hg::dirstate::has_exec_bit; +use hg::dirstate::entry::{has_exec_bit, TruncatedTimestamp}; use hg::dirstate::status::StatusPath; -use hg::dirstate::TruncatedTimestamp; use hg::errors::{HgError, IoResultExt}; use hg::filepatterns::parse_pattern_args; use hg::lock::LockError;