mrt_parser
========
Multi-Threaded Routing Toolkit (MRT) Routing Information Export Format ([RFC 6396](https://tools.ietf.org/html/rfc6396)) parser
library for Rust.
Inspired by parser from [pyasn](https://github.com/hadiasghari/pyasn).
Currently, only `PEER_INDEX_TABLE`, `RIB_IPV4_UNICAST` and `RIB_IPV6_UNICAST` subtypes from `TABLE_DUMP_V2` type and `TABLE_DUMP` type are supported.
[](https://travis-ci.org/JakubOnderka/mrt_parser)
[](https://crates.io/crates/mrt_parser)
- [Documentation](https://docs.rs/mrt_parser)
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
mrt_parser = "0.1"
```
and this to your crate root:
```rust
extern crate mrt_parser;
```