##// END OF EJS Templates
rust: introduce Repo and Vfs types for filesystem abstraction...
rust: introduce Repo and Vfs types for filesystem abstraction This is similar to the corresponding Python classes. Repo represents a repository and knows the path to the `.hg` directory, the `store` directory, and the working directory. Separating these will enable supporting the share extension. A Vfs is created from a Repo for one of these three directories. It has filesystem access APIs that take a relative std::path::Path as a parameter. Differential Revision: https://phab.mercurial-scm.org/D9596

File last commit:

r45237:a347a329 default
r46782:8a491439 default
Show More
lib.rs
15 lines | 383 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 // 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.
Yuya Nishihara
rust-chg: reimplement attach_io operation as async function...
r45232 mod attachio;
Yuya Nishihara
rust-chg: reimplement ChgClientExt as ChgClient wrapper...
r45236 mod clientext;
Yuya Nishihara
rust-chg: reimplement locator by using async/await and tokio-0.2...
r45237 pub mod locator;
Yuya Nishihara
rust-chg: add parser for request messages sent to "S" channel...
r40007 pub mod message;
Yuya Nishihara
rust-chg: add wrapper around C function
r40006 pub mod procutil;
Yuya Nishihara
rust-chg: reimplement run_command operation as async function...
r45235 mod runcommand;
Yuya Nishihara
rust-chg: reimplement uihandler by using async-trait and tokio-0.2...
r45234 mod uihandler;
Yuya Nishihara
rust-chg: add callback to handle pager and shell command requests...
r40010
Yuya Nishihara
rust-chg: reimplement ChgClientExt as ChgClient wrapper...
r45236 pub use clientext::ChgClient;
Yuya Nishihara
rust-chg: reimplement uihandler by using async-trait and tokio-0.2...
r45234 pub use uihandler::{ChgUiHandler, SystemHandler};