forked from szymonwieloch/rust-rawsock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 922 Bytes
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
[package]
name = "rawsock"
version = "0.2.1"
edition = "2018"
authors = ["Szymon Wieloch <szymon.wieloch@gmail.com>"]
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"
[[example]]
name = "dynamic"
[[example]]
name = "static"
[[example]]
name = "list_interfs"
[[example]]
name = "loop"