rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Fri, 10 Apr 2020 21:35:16 +0900
changeset 44688 1f5ab1a9363d
parent 44671 bb936e25a84a
child 44736 8685add122ff
permissions -rw-r--r--
rust-chg: upgrade to 2018 edition and remove useless extern crates Differential Revision: https://phab.mercurial-scm.org/D8399

// 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::ChgClientExt;
pub use uihandler::{ChgUiHandler, SystemHandler};