1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//! [](https://travis-ci.com/github/ivanceras/titik)
//! [](https://crates.io/crates/titik)
//!
//! Titik is a crossplatform TUI widget library with the goal of being able to interact
//! intuitively on these widgets.
//!
//! 
//!
//! It uses [`crossterm`](https://crates.io/crates/crossterm) as the underlying backend.
//!
//! To run the demo use the following command:
//! ```sh
//! cargo run --example demo 2>/dev/null
//! ```
//! Note: `2>/dev/null` is sending the debugging log from `eprintln` into the `/dev/null` device
//!
//! Without doing so, will result a flicker in your screen caused by debugging info and tui mixed
//! in one terminal output.
//!
//! Alternatively, you can pipe the debugging log from `eprintln` into a file say `/tmp/debug.log`
//! by doing so:
//! ```sh
//! cargo run --example demo 2>/tmp/debug.log
//! ```
//!
//! You can then open a new terminal and tail the `/tmp/debug.log` file
//! ```sh
//! tail -f /tmp/debug.log
//! ```
//!
//!
//#![deny(warnings)]
//#![deny(
// missing_docs,
// missing_copy_implementations,
// trivial_casts,
// trivial_numeric_casts,
// unstable_features,
// unused_import_braces
//)]
pub use ;
pub use Cmd;
pub use crossterm;
pub use Event;
pub use expanse;
pub use ;
pub use InputBuffer;
pub use ;
pub use ;
pub use Value;
pub use *;
pub