A JSON Pointer index for line/column information within JSON and YAML content
Add the following to your Cargo.toml
file's [dependencies]
heading
toml
[dependencies]
lincolns = "0.1"
Lincolns exposes two sets of operations: one to load YAML/JSON content into an index for lookup and one to perform the lookup
```rust use lincolns::Position; use std::error::Error;
fn main() -> Result<(), Box
If you care to see what JSON pointer paths are available you can iterate over them using iter
```rust use lincolns::from_str; use std::error::Error;
fn main() -> Result<(), Box
That's it.
lin(e and )col(umn)n(umber)s
Doug Tangren (softprops) 2019