-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (27 loc) · 877 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
[package]
name = "stream-extractor"
version = "0.4.0"
edition = "2021"
authors = ["geno nullfree <[email protected]>"]
license = "BSD-3-Clause"
description = "The TCP Stream Extractor is a small utility that can read in a PCAP file, search through it for TCP streams, and write out each stream to a separate new PCAP file."
readme = "README.md"
homepage = "https://github.com/genonullfree/stream-extractor.git"
repository = "https://github.com/genonullfree/stream-extractor.git"
keywords = ["pcap", "tcp", "stream"]
categories = ["command-line-utilities", "network-programming"]
exclude = ["sample"]
[profile.release]
codegen-units=1
opt-level = 0
lto = true
strip=true
overflow-checks = false
debug = false
debug-assertions = false
panic="abort"
incremental = true
[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
pcap-file = "2.0.0"
pnet = "0.33.0"