-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
43 lines (39 loc) · 888 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "pcap-async"
edition = "2018"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.1.x" git tag.
version = "0.4.1"
license = "MIT"
readme = "README.md"
description = """
Async/Stream Extensions for libpcap
"""
authors = ["dbcfd <bdbrowning2@gmail.com>", "Ben Kornmeier <ben@kornstar.net>"]
categories = ["asynchronous", "network-programming"]
documentation = "https://docs.rs/pcap-async/"
repository = "https://github.com/dbcfd/pcap-async"
exclude = ["resources/*.pcap"]
[dependencies]
byteorder = "1.3"
futures = "0.3"
libc = "0.2"
log = "0.4"
mio = "0.6"
pin-project = "0.4"
pcap-sys = "0.1"
smol = "1.2"
thiserror = "1.0"
[dev-dependencies]
rand = "0.3"
criterion = "0.2"
env_logger = "0.6"
[lib]
path = "src/lib.rs"
[[bench]]
path = "benches/bench_capture.rs"
name = "bench_capture"
harness = false