json-pointer 0.1.0

A crate for parsing and using JSON pointers, as specified in RFC 6901.
Documentation
# json-pointer

A crate for parsing and using JSON pointers, as specified in RFC 6901.

[![Build Status](https://travis-ci.org/remexre/json-pointer.svg?branch=master)](https://travis-ci.org/remexre/json-pointer)

## Creating a JSON Pointer

JSON pointers can be created with a literal `[&str]`, or parsed from a `String`.

```rust
TODO
```

## Using a JSON Pointer

The `JsonPointer` type provides `.get()` and `.get_mut()`, to get references
and mutable references to the appropriate value, respectively.

```rust
TODO
```