Mercurial > public > mercurial-scm > hg
view rust/chg/src/lib.rs @ 49581:04f1dba53c96 stable 6.3
rust: create wrapper struct to reduce `regex` contention issues
Explanations inline.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 09 Nov 2022 23:28:01 -0500 |
parents | a347a329e48d |
children |
line wrap: on
line source
// Copyright 2018 Yuya Nishihara <yuya@tcha.org> // // This software may be used and distributed according to the terms of the // GNU General Public License version 2 or any later version. mod attachio; mod clientext; pub mod locator; pub mod message; pub mod procutil; mod runcommand; mod uihandler; pub use clientext::ChgClient; pub use uihandler::{ChgUiHandler, SystemHandler};