treediff 1.0.0

Find the difference between arbitrary data structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[![Build Status linux+osx](https://travis-ci.org/Byron/treediff-rs.svg?branch=master)](https://travis-ci.org/Byron/treediff-rs)
[![crates.io version](https://img.shields.io/crates/v/treediff.svg)](https://crates.io/crates/treediff)

A library to compare arbitrary structured data of the same type, efficiently.

# Usage

Add this to your Cargo.toml
```toml
[dependencies]
treediff = "*"
```

Add this to your lib ...
```Rust
extern crate treediff;
```