sapling/eden/mononoke/derived_data/deleted_files_manifest/lib.rs
Mateusz Kwapich 646e321d7c better public api for deleted files manifest
Summary:
The function for finding the commit where the file was deleted
in the fastlog module doesn't depend on fastlog at all.
It also seems generic enough to be a good public API for deleted files
manifests module.

Differential Revision: D22502596

fbshipit-source-id: 2e226bf14339da886668ee8e3402a08e8120266e
2020-07-23 07:34:51 -07:00

16 lines
394 B
Rust

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#![deny(warnings)]
mod derive;
mod mapping;
mod ops;
pub use mapping::{RootDeletedManifestId, RootDeletedManifestMapping};
pub use ops::{find_entries, find_entry, list_all_entries, resolve_path_state, PathState};