-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
44 lines (39 loc) · 1.15 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "bgp-rs"
version = "0.6.0"
authors = ["Christian Veenman <[email protected]>"]
edition = '2018'
readme = "README.md"
keywords = ["bgp", "parser"]
categories = ["parsing", "network-programming"]
repository = "https://github.com/DevQps/bgp-rs"
homepage = "https://github.com/DevQps/bgp-rs"
documentation = "https://docs.rs/bgp-rs"
description = "A library for parsing Border Gateway Protocol (BGP) formatted streams."
license = "GPL-3.0"
exclude = [
"README.md",
"res/*",
"tests/*",
".travis.yml"
]
[badges]
travis-ci = { repository = "DevQps/bgp-rs", branch = "master" }
codecov = { repository = "DevQps/bgp-rs", branch = "master", service = "github" }
maintenance = { status = "actively-developed" }
[features]
default = []
# Enable Flowspec SAFI & NLRI decoding/encoding
# Flowspec RFC: https://tools.ietf.org/html/rfc5575
# Uses bitflags for Flowspec Filter operators
flowspec = ["bitflags"]
[dependencies]
bitflags = { version = "1.2", optional = true }
byteorder = { version = "1.3.1", features = ["i128"] }
[dev-dependencies]
libflate = "0.1"
maplit = "1.0"
mrt-rs = "2.0.0"
pcap-file = "1.1"
etherparse = "0.9.0"
twoway = "0.2.0"