-
-
Notifications
You must be signed in to change notification settings - Fork 569
/
Cargo.toml
34 lines (28 loc) · 793 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
[package]
name = "sniffnet"
version = "1.0.0"
authors = ["Giuliano Bellini"]
edition = "2021"
description = "Application to comfortably monitor your network traffic"
readme = "README.md"
repository = "https://github.com/GyulyVGC/sniffnet"
license = "MIT OR Apache-2.0"
keywords = ["filter", "network", "packet", "sniffer", "parser"]
categories = ["command-line-utilities", "concurrency", "network-programming"]
[package.metadata.bundle]
name = "Sniffnet"
identifier = "gyulyvgc.sniffnet"
icon = ["./resources/icon.ico"]
[profile.release]
opt-level = 3
lto = true
[dependencies]
pcap = "0.11.0"
etherparse = "0.12.0"
chrono = "0.4.22"
thousands = "0.2.0"
plotters = "0.3.4"
indexmap = "1.9.1"
plotters-iced = "0.3.3"
iced = { version = "0.4.2", features = ["tokio"] }
iced_style = "0.4.0"