2022-11-26 23:57:50 +00:00
|
|
|
// Copyright 2020 The Jujutsu Authors
|
2020-12-12 08:00:42 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2023-07-09 17:27:39 +00:00
|
|
|
//! Jujutsu version control system.
|
|
|
|
|
2023-07-10 15:17:00 +00:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
#![deny(unused_must_use)]
|
2021-04-14 23:54:27 +00:00
|
|
|
|
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;
|
2023-03-01 05:50:04 +00:00
|
|
|
pub mod default_index_store;
|
2023-03-08 21:49:37 +00:00
|
|
|
pub mod default_revset_engine;
|
2023-03-14 05:35:29 +00:00
|
|
|
pub mod default_revset_graph_iterator;
|
2023-05-15 22:28:55 +00:00
|
|
|
pub mod default_submodule_store;
|
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;
|
2023-08-11 19:52:58 +00:00
|
|
|
pub mod fmt_util;
|
2023-07-08 09:23:32 +00:00
|
|
|
pub mod fsmonitor;
|
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;
|
2023-02-12 18:21:29 +00:00
|
|
|
pub mod hex_util;
|
2023-05-04 00:54:08 +00:00
|
|
|
pub mod id_prefix;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod index;
|
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;
|
2023-05-13 18:16:55 +00:00
|
|
|
pub mod merge;
|
2023-06-20 14:37:31 +00:00
|
|
|
pub mod merged_tree;
|
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;
|
2023-07-10 15:42:02 +00:00
|
|
|
#[allow(missing_docs)]
|
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;
|
2023-07-17 11:43:33 +00:00
|
|
|
pub mod revset_graph;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod rewrite;
|
|
|
|
pub mod settings;
|
2022-12-15 22:13:00 +00:00
|
|
|
pub mod simple_op_heads_store;
|
2020-12-12 08:00:42 +00:00
|
|
|
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;
|
2023-05-15 22:28:55 +00:00
|
|
|
pub mod submodule_store;
|
2020-12-12 08:00:42 +00:00
|
|
|
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;
|