Mercurial > public > mercurial-scm > hg
view rust/chg/src/lib.rs @ 44683:065048e66f32
rust-chg: send client side umask to server
This is equivalent to forwardumask() of hgclient.c.
Differential Revision: https://phab.mercurial-scm.org/D8382
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 04 Oct 2018 22:44:37 +0900 |
parents | bb936e25a84a |
children | 1f5ab1a9363d |
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. 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};