just playing with tangled
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
17pub mod cleanup_guard;
18pub mod cli_util;
19pub mod command_error;
20pub mod commands;
21pub mod commit_templater;
22pub mod config;
23pub mod description_util;
24pub mod diff_util;
25pub mod formatter;
26pub mod generic_templater;
27pub mod git_util;
28pub mod graphlog;
29pub mod merge_tools;
30pub mod operation_templater;
31mod progress;
32pub mod revset_util;
33pub mod template_builder;
34pub mod template_parser;
35pub mod templater;
36pub mod text_util;
37pub mod time_util;
38pub mod ui;