-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 989 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
[package]
name = "sniffle"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Jack Bernard <[email protected]>"]
repository = "https://github.com/Vociferix/sniffle"
description = "Packet sniffing and crafting library"
[dependencies]
sniffle-core = { path = "core", default-features = false }
sniffle-ende = { path = "ende" }
sniffle-uint = { path = "uint" }
sniffle-capfile = { path = "capfile", default-features = false }
sniffle-utils = { path = "utils" }
sniffle-protos = { path = "protos" }
nom = "7.1"
chrono = "0.4"
[dev-dependencies]
tokio = { version = "1.25", features = ["rt", "rt-multi-thread", "macros", "io-std"] }
[features]
default = ["npcap"]
libpcap = ["sniffle-core/libpcap"]
npcap = ["libpcap", "sniffle-core/npcap"]
[workspace]
members = [
"link-types",
"libpcap-sys",
"pcaprs",
"ende",
"uint",
"address",
"address/parse",
"address/macros",
"core",
"capfile",
"utils",
"protos",
]