rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Fri, 10 Apr 2020 21:44:46 +0900
changeset 44736 8685add122ff
parent 44688 1f5ab1a9363d
child 44738 1be605526c34
permissions -rw-r--r--
rust-chg: exclude futures-dependent modules from build and break things It's impractical to upgrade the codebase incrementally since futures 0.1 and 0.3 APIs are fundamentally different. So this patch temporarily excludes futures-dependent modules from the build. These modules will be upgraded and re-enabled one by one. Differential Revision: https://phab.mercurial-scm.org/D8440

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