pretty printing
This commit is contained in:
parent
52a80cfb0e
commit
c867ad379e
30 changed files with 1533 additions and 387 deletions
|
|
@ -1,6 +1,8 @@
|
|||
#![allow(dead_code, unused)]
|
||||
use pretty_print::{AnsiColor, AnsiStyle, PrettyBuilder, PrettyTree};
|
||||
use std::{io::stdout, rc::Rc};
|
||||
use pretty_print::{AnsiColor, AnsiStyle, PrettyBuilder, PrettyTree as RawPrettyTree};
|
||||
use std::{borrow::Cow, io::stdout, rc::Rc};
|
||||
|
||||
type PrettyTree<'a> = RawPrettyTree<'a, Cow<'a, str>>;
|
||||
|
||||
#[test]
|
||||
fn ready() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue