-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
executable file
·42 lines (36 loc) · 1.46 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
[package]
name = "pcap-rs"
version = "1.0.4"
authors = ["Wilfried Chauveau <[email protected]>"]
description = "A parser for pcap files (and its file iterator)."
license = "MIT"
repository = "https://github.com/ithinuel/pcap-rs"
readme = "README.md"
documentation = "https://docs.rs/pcap-rs"
keywords = ["parser", "parser-combinators", "parsing", "bit", "pcap"]
categories = ["parsing"]
edition = "2018"
include = [
"LICENSE",
".gitignore",
".travis.yml",
"Cargo.toml",
"src/*.rs"
]
[badges]
# Travis CI: `repository` in format "<user>/<project>" is required.
# `branch` is optional; default is `master`
travis-ci = { repository = "ithinuel/pcap-rs", branch = "master" }
# Coveralls: `repository` is required. `branch` is optional; default is `master`
# `service` is optional; valid values are `github` (default) and `bitbucket`.
coveralls = { repository = "ithinuel/pcap-rs", branch = "master", service = "github" }
# Is it maintained resolution time: `repository` is required.
is-it-maintained-issue-resolution = { repository = "ithinuel/pcap-rs" }
# Is it maintained percentage of open issues: `repository` is required.
is-it-maintained-open-issues = { repository = "ithinuel/pcap-rs" }
# Maintenance: `status` is required Available options are `actively-developed`,
# `passively-maintained`, `as-is`, `none`, `experimental`, `looking-for-maintainer`
# and `deprecated`.
maintenance = { status = "passively-maintained" }
[dependencies]
nom = { version = "^5" }