-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
27 lines (25 loc) · 825 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "mrt-rs"
version = "2.0.1"
authors = ["Christian Veenman <chris_veenman@hotmail.com>"]
edition = '2018'
readme = "README.md"
keywords = ["mrt", "parser", "bgp"]
categories = ["parsing", "network-programming"]
repository = "https://github.com/DevQps/mrt-rs"
homepage = "https://github.com/DevQps/mrt-rs"
documentation = "https://docs.rs/mrt-rs"
description = "A library for parsing Multi-Threaded Routing Toolkit (MRT) formatted streams."
license = "GPL-3.0"
exclude = [
"README.md",
"res/*",
"tests/*",
".github/*"
]
[badges]
travis-ci = { repository = "DevQps/mrt-rs", branch = "master" }
codecov = { repository = "DevQps/mrt-rs", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[dependencies]
byteorder = { version = "1.3.4", features = ["i128"] }