forked from libpnet/libpnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (56 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "pnet"
version = "0.12.0"
authors = [ "Robert Clipsham <robert@octarineparrot.com>" ]
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"]
build = "build.rs"
[lib]
name = "pnet"
[features]
default = ["with-syntex"]
nightly = ["pnet_macros_plugin"]
benchmark = []
netmap = ["netmap_sys"]
appveyor = []
travis = []
with-syntex = ["syntex", "pnet_macros/with-syntex"]
[dependencies.clippy]
optional = true
version = ">=0.0"
[dependencies.netmap_sys]
features = ["netmap_with_libs"]
optional = true
version = ">=0.0"
[dependencies.libc]
version = "0.2.*"
[dependencies.winapi]
version = "0.2.*"
[dependencies.ws2_32-sys]
version = "0.2.*"
[dependencies.syntex]
version = "0.42.*"
optional = true
[dependencies.pnet_macros]
optional = true
default-features = false
features = []
path = "pnet_macros"
version = ">=0.9"
[dependencies.pnet_macros_plugin]
optional = true
path = "pnet_macros_plugin"
version = ">=0.1"
[dependencies.pnet_macros_support]
path = "pnet_macros_support"
version = ">=0.1"
[dev-dependencies]
time = ">=0.1"
[build-dependencies]
syntex = { version = "0.42.*", optional = true }
pnet_macros = { path = "pnet_macros", version = ">=0.6" }