rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Thu, 04 Oct 2018 22:44:37 +0900
changeset 44683 065048e66f32
parent 44671 bb936e25a84a
child 44688 1f5ab1a9363d
permissions -rw-r--r--
rust-chg: send client side umask to server This is equivalent to forwardumask() of hgclient.c. Differential Revision: https://phab.mercurial-scm.org/D8382

// 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.

extern crate bytes;
#[macro_use]
extern crate futures;
extern crate libc;
#[macro_use]
extern crate log;
extern crate tokio;
extern crate tokio_hglib;
extern crate tokio_process;
extern crate tokio_timer;

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};