tedi 0.16.3

Personal productivity CLI for task tracking, time management, and GitHub issue integration
Documentation
//! Integration tests entry point, following https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html

mod common;
pub use common::*;

mod blocker_integrated;
mod file_naming;
mod issue_preservation;
mod milestones;
mod reset_conflict;
mod sync;
mod touch;
mod touch_parent;

#[ctor::ctor]
fn init() {
	v_utils::install_color_eyre!();
	miette::set_hook(Box::new(|_| Box::new(miette::MietteHandlerOpts::new().terminal_links(true).build()))).expect("miette hook already set");
}