shapely-pretty 3.1.0

Pretty-printing for types implementing the Shapely trait
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]

mod ansi;
mod color;
mod display;
mod printer;

pub use ansi::*;
pub use color::*;
pub use display::*;
pub use printer::*;

// Re-export shapely_core for convenience
pub use shapely_core;