forked from libpnet/libpnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (27 loc) · 828 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
[package]
name = "pnet"
version = "0.0.1"
authors = [ "Robert Clipsham <[email protected]>" ]
license = "MIT/Apache-2.0"
homepage = "https://github.com/libpnet/libpnet"
repository = "https://github.com/libpnet/libpnet"
documentation = "http://octarineparrot.com/assets/libpnet/doc/pnet/"
description = "Cross-platform, low level networking using the Rust programming language."
readme = "README.md"
keywords = ["networking", "transport", "datalink", "packet", "protocol"]
links = "packet"
build = "build.rs"
[lib]
name = "pnet"
crate_type = [ "rlib", "dylib" ]
[features]
default = []
netmap = ["netmap_sys"]
[dependencies.netmap_sys]
git = "https://github.com/libpnet/netmap_sys.git"
features = ["netmap_with_libs"]
optional = true
[dependencies.pnet_macros]
path = "pnet_macros"
[dev-dependencies]
time = "*"