Mercurial > public > mercurial-scm > hg
comparison rust/hg-core/src/lib.rs @ 52166:1a8466fd904a
hg-core: add fncache module
For now it's only a super simple trait. It will be used for calling back into
Python soon, and later will be fleshed out into a full fncache.
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Mon, 29 Jul 2024 20:28:42 +0200 |
parents | e01e84e5e426 |
children | bd8081e9fd62 |
comparison
equal
deleted
inserted
replaced
52165:84b5802ba7d3 | 52166:1a8466fd904a |
---|---|
12 pub use ancestors::{AncestorsIterator, MissingAncestors}; | 12 pub use ancestors::{AncestorsIterator, MissingAncestors}; |
13 pub mod dirstate; | 13 pub mod dirstate; |
14 pub mod dirstate_tree; | 14 pub mod dirstate_tree; |
15 pub mod discovery; | 15 pub mod discovery; |
16 pub mod exit_codes; | 16 pub mod exit_codes; |
17 pub mod fncache; | |
17 pub mod requirements; | 18 pub mod requirements; |
18 pub mod testing; // unconditionally built, for use from integration tests | 19 pub mod testing; // unconditionally built, for use from integration tests |
19 pub use dirstate::{ | 20 pub use dirstate::{ |
20 dirs_multiset::{DirsMultiset, DirsMultisetIter}, | 21 dirs_multiset::{DirsMultiset, DirsMultisetIter}, |
21 status::{ | 22 status::{ |