sapling/eden/mononoke/mercurial/revlog/lib.rs
Lukasz Piatkowski 542d1f93d3 Manual synchronization of fbcode/eden and facebookexperimental/eden
Summary:
This commit manually synchronizes the internal move of
fbcode/scm/mononoke under fbcode/eden/mononoke which couldn't be
performed by ShipIt automatically.

Reviewed By: StanislavGlebik

Differential Revision: D19722832

fbshipit-source-id: 52fbc8bc42a8940b39872dfb8b00ce9c0f6b0800
2020-02-11 11:42:43 +01:00

28 lines
635 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 errors;
pub mod manifest;
pub mod revlog;
pub mod revlogrepo;
pub mod stockbookmarks;
pub use crate::errors::*;
pub use crate::manifest::{EntryContent, RevlogEntry};
pub use crate::revlogrepo::{RevlogManifest, RevlogRepo, RevlogRepoOptions};
pub mod changeset {
pub use mercurial_types::blobs::{serialize_cs, RevlogChangeset};
}
pub use crate::changeset::RevlogChangeset;
mod thrift {
pub use mononoke_types_thrift::*;
}