rust/chg/src/lib.rs
author Yuya Nishihara <yuya@tcha.org>
Mon, 24 Sep 2018 16:59:12 +0900
changeset 39972 7a0ffdd4af78
parent 39971 b1d8acd82d60
child 39974 a9c5fc436fd5
permissions -rw-r--r--
rust-chg: add future that handles "attachio" request This is the sequence to send client-side stdio and pager stdin to the server.

// 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;
extern crate tokio;
extern crate tokio_hglib;

pub mod attachio;
pub mod message;
pub mod procutil;