rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Fri, 10 Apr 2020 21:44:46 +0900
changeset 44846 8685add122ff
parent 44689 1f5ab1a9363d
child 44848 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39971
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
     1
// Copyright 2018 Yuya Nishihara <yuya@tcha.org>
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
     2
//
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
     3
// This software may be used and distributed according to the terms of the
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
     4
// GNU General Public License version 2 or any later version.
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
     5
44846
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
     6
//mod attachio;
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
     7
//mod clientext;
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
     8
//pub mod locator;
39972
b1d8acd82d60 rust-chg: add parser for request messages sent to "S" channel
Yuya Nishihara <yuya@tcha.org>
parents: 39971
diff changeset
     9
pub mod message;
39971
a8be2cff613f rust-chg: add wrapper around C function
Yuya Nishihara <yuya@tcha.org>
parents: 39968
diff changeset
    10
pub mod procutil;
44846
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
    11
//mod runcommand;
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
    12
//mod uihandler;
39975
a9c5fc436fd5 rust-chg: add callback to handle pager and shell command requests
Yuya Nishihara <yuya@tcha.org>
parents: 39973
diff changeset
    13
44846
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
    14
//pub use clientext::ChgClientExt;
8685add122ff rust-chg: exclude futures-dependent modules from build and break things
Yuya Nishihara <yuya@tcha.org>
parents: 44689
diff changeset
    15
//pub use uihandler::{ChgUiHandler, SystemHandler};