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.
|
|
|
|
|
|
|
|
#![deny(unused_must_use)]
|
|
|
|
|
2022-10-29 19:48:41 +00:00
|
|
|
pub mod cleanup_guard;
|
2022-09-22 04:44:46 +00:00
|
|
|
pub mod cli_util;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod commands;
|
2023-02-18 08:22:57 +00:00
|
|
|
pub mod commit_templater;
|
2022-05-01 06:57:09 +00:00
|
|
|
pub mod config;
|
2022-12-14 05:11:20 +00:00
|
|
|
pub mod diff_util;
|
2021-06-02 22:50:08 +00:00
|
|
|
pub mod formatter;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod graphlog;
|
2022-12-18 04:00:07 +00:00
|
|
|
pub mod merge_tools;
|
2023-02-19 08:05:50 +00:00
|
|
|
pub mod operation_templater;
|
2022-10-23 20:05:23 +00:00
|
|
|
mod progress;
|
2023-03-12 11:10:19 +00:00
|
|
|
pub mod template_builder;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod template_parser;
|
|
|
|
pub mod templater;
|
2023-03-04 07:55:01 +00:00
|
|
|
pub mod text_util;
|
2023-01-14 13:40:04 +00:00
|
|
|
pub mod time_util;
|
2020-12-12 08:00:42 +00:00
|
|
|
pub mod ui;
|