Mercurial > public > mercurial-scm > hg
comparison rust/hg-core/src/lib.rs @ 52037:3ae7c43ad8aa
rust: add `Progress` trait for progress bars
This will be used in the next few changes to introduce a progress bar for
the `hg update` fastpath.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Mon, 30 Sep 2024 16:02:30 +0200 |
parents | e4b9f8a74d5f |
children | 8b7123c8947b |
comparison
equal
deleted
inserted
replaced
52036:7c105b953ca4 | 52037:3ae7c43ad8aa |
---|---|
33 pub mod checkexec; | 33 pub mod checkexec; |
34 pub mod config; | 34 pub mod config; |
35 pub mod lock; | 35 pub mod lock; |
36 pub mod logging; | 36 pub mod logging; |
37 pub mod operations; | 37 pub mod operations; |
38 pub mod progress; | |
38 pub mod revset; | 39 pub mod revset; |
39 pub mod utils; | 40 pub mod utils; |
40 pub mod vfs; | 41 pub mod vfs; |
41 | 42 |
42 use crate::utils::hg_path::{HgPathBuf, HgPathError}; | 43 use crate::utils::hg_path::{HgPathBuf, HgPathError}; |