tree: 36cfd16f41298fe169819402912601f0918283fc [path history] [tgz]
  1. benches/
  2. examples/
  3. src/
  4. .cargo-checksum.json
  5. Cargo.toml
  6. CHANGELOG.md
  7. LICENSE
  8. README.md
third_party/rust_crates/vendor/pretty/README.md

pretty.rs

Build Status Docs

Pretty printing combinators for Rust

Synopsis

This crate provides functionality for defining pretty printers. It is particularly useful for printing structured recursive data like trees.

The implementation was originally based on Larsen‘s SML translation (https://github.com/kfl/wpp) of Wadler’s Haskell pretty printer (http://homepages.inf.ed.ac.uk/wadler/papers/prettier/prettier.pdf). It has since been modified in various ways to better fit Rust's programming model. In particular, it uses iteration rather than recursion and provides streaming output.

Documentation

See the generated API documentation here.

Requirements

  1. Rust
  2. Cargo

You can install both with the following:

$ curl -s https://static.rust-lang.org/rustup.sh | sudo sh

See Installing Rust for further details.

Usage

$ cargo build                                          ## build library and binary
$ cargo run --example trees                            ## run the example (pretty trees)
$ cargo run --example colored --features termcolor     ## run the example (pretty colored output)
$ cargo bench                                          ## run benchmarks
$ cargo test                                           ## run tests