2020-12-12 08:00:42 +00:00
|
|
|
// Copyright 2020 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2021-04-14 23:54:27 +00:00
|
|
|
#![deny(unused_must_use)]
|
|
|
|
|
2022-11-11 17:33:22 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod content_hash;
|
|
|
|
|
2021-09-12 06:52:38 +00:00
|
|
|
pub mod backend;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod commit;
|
|
|
|
pub mod commit_builder;
|
|
|
|
pub mod conflicts;
|
|
|
|
pub mod dag_walk;
|
2021-03-20 21:44:00 +00:00
|
|
|
pub mod diff;
|
2021-06-14 05:54:43 +00:00
|
|
|
pub mod file_util;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod files;
|
2020-12-28 01:41:20 +00:00
|
|
|
pub mod git;
|
2021-09-12 06:52:38 +00:00
|
|
|
pub mod git_backend;
|
2021-05-12 16:43:58 +00:00
|
|
|
pub mod gitignore;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod index;
|
2021-03-03 05:43:13 +00:00
|
|
|
pub mod index_store;
|
2021-09-12 06:52:38 +00:00
|
|
|
pub mod local_backend;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod lock;
|
|
|
|
pub mod matchers;
|
2022-02-21 05:14:48 +00:00
|
|
|
pub mod nightly_shims;
|
2021-03-10 23:39:16 +00:00
|
|
|
pub mod op_heads_store;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod op_store;
|
|
|
|
pub mod operation;
|
2020-12-24 07:12:18 +00:00
|
|
|
pub mod protos;
|
2021-07-19 06:04:21 +00:00
|
|
|
pub mod refs;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod repo;
|
|
|
|
pub mod repo_path;
|
2021-04-05 05:56:10 +00:00
|
|
|
pub mod revset;
|
2021-04-24 05:55:15 +00:00
|
|
|
pub mod revset_graph_iterator;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod rewrite;
|
|
|
|
pub mod settings;
|
|
|
|
pub mod simple_op_store;
|
2021-10-14 23:43:11 +00:00
|
|
|
pub mod stacked_table;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod store;
|
|
|
|
pub mod transaction;
|
|
|
|
pub mod tree;
|
|
|
|
pub mod tree_builder;
|
|
|
|
pub mod view;
|
|
|
|
pub mod working_copy;
|
2021-11-18 05:58:36 +00:00
|
|
|
pub mod workspace;
|