conciliator 0.3.10

[WIP] Library for interactive CLI programs
Documentation

pub mod tree {
	pub const ROOT: &str = "";
	pub const STEM: &str = "";
	pub const KNOT: &str = "├─";
	pub const TAIL: &str = "└─";
}

pub mod spin {
	/// Lifted from github.com/FGRibreau/spinners
	pub const DOTS: [&str; 10] = [
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		""
	];
	/// Lifted from github.com/FGRibreau/spinners
	pub const TRIANGLE: [&str; 4] = [
		"",
		"",
		"",
		""
	];

	pub const SQUARE: [&str; 8] = [
		"",
		"",
		"",
		"",
		"",
		"",
		"",
		"",
	];
	pub const CHASE: [&str; 5] = [
		"",
		"⠠⠌⠁",
		"⠰ ⠃",
		"⠘ ⠆",
		"⠈⠡⠄",
	];

	pub const LOOP: [&str; 33] = [
		"",
		"",
		"⠠⠤ ",
		"⠰⠄ ",
		"",
		"⠘⠁ ",
		"⠈⠉ ",
		" ⠉⠁",
		" ⠈⠃",
		"",
		" ⠠⠆",
		" ⠤⠄",
		"⠠⠤ ",
		"⠰⠄ ",
		"",
		"⠘⠁ ",
		"⠈⠉ ",
		" ⠉⠁",
		" ⠈⠃",
		"",
		" ⠠⠆",
		" ⠤⠄",
		"⠠⠤ ",
		"⠰⠄ ",
		"",
		"⠘⠁ ",
		"⠈⠉ ",
		" ⠉⠁",
		" ⠈⠃",
		"",
		" ⠠⠆",
		" ⠠⠄",
		"",
	];

	pub const LOOP_WIDE: [&str; 41] = [
		"",
		"",
		"⠠⠤ ",
		"⠤⠄ ",
		"",
		"",
		"",
		"⠉⠁ ",
		" ⠉⠁",
		" ⠈⠉",
		"",
		"",
		"",
		" ⠠⠤",
		" ⠤⠄",
		"⠠⠤ ",
		"⠤⠄ ",
		"",
		"",
		"",
		"⠉⠁ ",
		" ⠉⠁",
		" ⠈⠉",
		"",
		"",
		"",
		" ⠠⠤",
		" ⠤⠄",
		"⠠⠤ ",
		"⠤⠄ ",
		"",
		"",
		"",
		"⠉⠁ ",
		" ⠉⠁",
		" ⠈⠉",
		"",
		"",
		"",
		" ⠠⠤",
		" ⠠⠄",
	];
}