jujutsu_lib/
lib.rs

1// Copyright 2020 The Jujutsu Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![deny(unused_must_use)]
16
17#[macro_use]
18mod content_hash;
19
20pub mod backend;
21pub mod commit;
22pub mod commit_builder;
23pub mod conflicts;
24pub mod dag_walk;
25pub mod diff;
26pub mod file_util;
27pub mod files;
28pub mod git;
29pub mod git_backend;
30pub mod gitignore;
31pub mod hex_util;
32pub mod index;
33pub mod index_store;
34#[cfg(feature = "legacy-thrift")]
35mod legacy_thrift_op_store;
36pub mod local_backend;
37pub mod lock;
38pub mod matchers;
39pub mod nightly_shims;
40pub mod op_heads_store;
41pub mod op_store;
42pub mod operation;
43mod proto_op_store;
44pub mod protos;
45pub mod refs;
46pub mod repo;
47pub mod repo_path;
48pub mod revset;
49pub mod revset_graph_iterator;
50pub mod rewrite;
51pub mod settings;
52pub mod simple_op_heads_store;
53pub mod simple_op_store;
54#[cfg(feature = "legacy-thrift")]
55mod simple_op_store_model;
56pub mod stacked_table;
57pub mod store;
58pub mod transaction;
59pub mod tree;
60pub mod tree_builder;
61pub mod view;
62pub mod working_copy;
63pub mod workspace;