mirror of
https://github.com/GyulyVGC/sniffnet.git
synced 2025-12-23 22:29:01 -05:00
Merge branch 'main' into improve-versionning
This commit is contained in:
29
Cargo.toml
29
Cargo.toml
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sniffnet"
|
||||
version = "1.3.2"
|
||||
version = "1.4.0"
|
||||
authors = ["Giuliano Bellini <gyulyvgc99@gmail.com>"]
|
||||
edition = "2024"
|
||||
description = "Application to comfortably monitor your network traffic"
|
||||
@@ -37,7 +37,7 @@ strip = true
|
||||
#═══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
|
||||
|
||||
[dependencies]
|
||||
pcap = "2.2.0"
|
||||
pcap = "2.3.0"
|
||||
etherparse = "0.18.0"
|
||||
chrono = { version = "0.4.41", default-features = false, features = ["clock"] }
|
||||
plotters = { version = "0.3.7", default-features = false, features = ["area_series", "line_series"] }
|
||||
@@ -46,27 +46,28 @@ plotters-iced = "0.11.0"
|
||||
maxminddb = "0.26.0"
|
||||
confy = "1.0.0"
|
||||
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
|
||||
rodio = { version = "0.20.1", default-features = false, features = ["mp3"] }
|
||||
rodio = { version = "0.21.1", default-features = false, features = ["mp3", "playback"] }
|
||||
dns-lookup = "2.0.4"
|
||||
toml = "0.8.23"
|
||||
toml = "0.9.2"
|
||||
ctrlc = { version = "3.4.7", features = ["termination"] }
|
||||
rfd = "0.15.3"
|
||||
phf = "0.11.3"
|
||||
phf_shared = "0.11.3"
|
||||
rfd = "0.15.4"
|
||||
phf = "0.12.1"
|
||||
phf_shared = "0.12.1"
|
||||
splines = "5.0.0"
|
||||
clap = { version = "4.5.39", features = ["derive"] }
|
||||
tokio = { version = "1.45.1", features = ["macros"] }
|
||||
async-channel = "2.3.1"
|
||||
clap = { version = "4.5.41", features = ["derive"] }
|
||||
tokio = { version = "1.46.1", features = ["macros"] }
|
||||
async-channel = "2.5.0"
|
||||
semver = "1.0"
|
||||
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
gag = "1.0.0"
|
||||
|
||||
[target.'cfg(not(target_arch = "powerpc64"))'.dependencies]
|
||||
reqwest = { version = "0.12.19", default-features = false, features = ["json", "rustls-tls"] }
|
||||
reqwest = { version = "0.12.22", default-features = false, features = ["json", "rustls-tls"] }
|
||||
|
||||
[target.'cfg(target_arch = "powerpc64")'.dependencies]
|
||||
reqwest = { version = "0.12.19", features = ["json"] }
|
||||
reqwest = { version = "0.12.22", features = ["json"] }
|
||||
|
||||
#───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
@@ -78,8 +79,8 @@ serial_test = { version = "3.2.0", default-features = false }
|
||||
#───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
[build-dependencies]
|
||||
phf_codegen = "0.11.3"
|
||||
phf_shared = "0.11.3"
|
||||
phf_codegen = "0.12.1"
|
||||
phf_shared = "0.12.1"
|
||||
rustrict = { version = "0.7.35", default-features = false, features = ["censor"] }
|
||||
|
||||
[target."cfg(windows)".build-dependencies]
|
||||
|
||||
Reference in New Issue
Block a user