Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakubonderka/mrt_parser
Multi-Threaded Routing Toolkit (MRT) Routing Information Export Format (RFC 6396) parser library for Rust.
https://github.com/jakubonderka/mrt_parser
bgp mrt network parser rust-library
Last synced: about 1 month ago
JSON representation
Multi-Threaded Routing Toolkit (MRT) Routing Information Export Format (RFC 6396) parser library for Rust.
- Host: GitHub
- URL: https://github.com/jakubonderka/mrt_parser
- Owner: JakubOnderka
- License: bsd-2-clause
- Created: 2018-03-24T21:44:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-22T11:37:52.000Z (over 3 years ago)
- Last Synced: 2024-09-17T14:48:39.869Z (2 months ago)
- Topics: bgp, mrt, network, parser, rust-library
- Language: Rust
- Size: 28.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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.
[![Documentation](https://docs.rs/mrt_parser/badge.svg)](https://docs.rs/mrt_parser)
[![Build Status](https://travis-ci.com/JakubOnderka/mrt_parser.svg?branch=master)](https://travis-ci.com/JakubOnderka/mrt_parser)
[![Crates.io](https://img.shields.io/crates/v/mrt_parser.svg)](https://crates.io/crates/mrt_parser)## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
mrt_parser = "0.5"
```and this to your crate root:
```rust
extern crate mrt_parser;
```Minimal required version of Rust compiler is 1.31 (because of 2018 edition). For older Rust versions, you can use
`mrt_parser` version 0.2.