netui 0.2.1

NetUI is a Rust-based tui designed to monitor network interfaces. It allows you to send ARP messages via the network interface and listen for packets to show bandwidth stats.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "netui"
version = "0.2.1"
authors = ["yousfi saad <yousfi.saad@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NetUI is a Rust-based tui designed to monitor network interfaces. It allows you to send ARP messages via the network interface and listen for packets to show bandwidth stats."
readme = "README.md"
keywords = [
    "cli",
    "tui",
    "network",
    "monitor",
    "ARP",
]
license-file = "license.txt"
repository = "https://github.com/yousfiSaad/netui.git"

[features]
default = ["pnet-backend"]
ebpf-backend = [
    "aya",
    "aya-log",
    "pnet-backend",
    "aya-build",
]
pnet-backend = [
    "pnet",
    "pnet_datalink",
]

[lib]
name = "netui"
path = "src/lib.rs"

[[bin]]
name = "netui"
path = "src/main.rs"

[[test]]
name = "backend_integration"
path = "tests/backend_integration.rs"

[dependencies.aya]
version = "0.13"
optional = true

[dependencies.aya-log]
version = "0.2"
optional = true

[dependencies.bytes]
version = "1.5"

[dependencies.chrono]
version = "0.4.39"

[dependencies.clap]
version = "4.5.34"
features = ["derive"]

[dependencies.color-eyre]
version = "0.6.3"

[dependencies.crossterm]
version = "0.28.1"
features = ["event-stream"]

[dependencies.directories]
version = "6.0.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.itertools]
version = "0.14.0"

[dependencies.pnet]
version = "0.35.0"
optional = true

[dependencies.pnet_datalink]
version = "0.35.0"
optional = true

[dependencies.ratatui]
version = "0.29.0"

[dependencies.ringbuf]
version = "0.4.7"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.40.0"
features = ["full"]

[dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[dependencies.tracing]
version = "0.1.41"

[dependencies.tracing-error]
version = "0.2.1"

[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]

[dependencies.unicode-width]
version = "0.2.0"

[build-dependencies.anyhow]
version = "1"

[build-dependencies.aya-build]
version = "0.1.3"
optional = true
default-features = false

[target.'cfg(target_os = "linux")'.dependencies.aya]
version = "0.13"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.aya-log]
version = "0.2"
optional = true

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"