-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
48 lines (38 loc) · 1.03 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
44
45
46
47
48
[package]
name = "rawsock"
version = "0.3.0"
edition = "2018"
authors = ["Szymon Wieloch <[email protected]>"]
description = "Library for receiving and sending raw packets. While most crate wrap just one library, rawsock allows you to use pcap, wpcap, npcap and pf_ring (pfring) using a consistent API for all of them."
keywords = ["packet", "socket", "pf_ring", "wpcap", "pcap"]
license = "MIT"
repository = "https://github.com/szymonwieloch/rust-rawsock"
categories = ["network-programming"]
readme = "README.md"
[badges.travis-ci]
repository = "szymonwieloch/rust-rawsock"
branch = "master"
[badges.is-it-maintained-open-issues]
repository = "szymonwieloch/rust-rawsock"
[dependencies]
dlopen = "0.1.7"
dlopen_derive = "0.1.4"
libc = "0.2.60"
time = "0.1"
errno = "0.2.4"
bitflags = "1.1.0"
lazy_static = "1.3.0"
[dev-dependencies]
crossbeam-utils = "0.6.6"
[[example]]
name = "dynamic"
[[example]]
name = "static"
[[example]]
name = "list_interfs"
[[example]]
name = "loop"
[[example]]
name = "thread_loop"
[[example]]
name = "filter"