Mercurial > hg
diff rust/chg/src/lib.rs @ 44750:c794d0da5fb2
rust-chg: reimplement uihandler by using async-trait and tokio-0.2
We no longer have to consume self and arguments.
Differential Revision: https://phab.mercurial-scm.org/D8444
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Fri, 10 Apr 2020 22:23:10 +0900 |
parents | 1be605526c34 |
children | 94cace4b80ea |
line wrap: on
line diff
--- a/rust/chg/src/lib.rs Fri Apr 10 23:08:57 2020 +0900 +++ b/rust/chg/src/lib.rs Fri Apr 10 22:23:10 2020 +0900 @@ -9,7 +9,7 @@ pub mod message; pub mod procutil; //mod runcommand; -//mod uihandler; +mod uihandler; //pub use clientext::ChgClientExt; -//pub use uihandler::{ChgUiHandler, SystemHandler}; +pub use uihandler::{ChgUiHandler, SystemHandler};