logutil 0.9.2

log Util is a Rust-based tool designed to help you monitor and analyze Nginx access logs in real-time.
[package]
name = "logutil"
version = "0.9.2"
edition = "2021"
authors = ["s00d <Virus191288@gmail.com>"]
description = "log Util is a Rust-based tool designed to help you monitor and analyze Nginx access logs in real-time."
homepage = "https://github.com/s00d/logutil"
repository = "https://github.com/s00d/logutil"
readme = "README.md"
license = "MIT"
keywords = ["log", "analyzer", "nginx", "rust"]

[dependencies]
tokio = { version = "1", features = ["full"] }
regex = "1"
structopt = "0.3"
log = "0.4.22"
crossterm = "0.27"
chrono = "0.4.38"
ratatui = "0.27.0"
textwrap = "0.16.1"
env_logger = "0.11.3"

[profile.release]
opt-level = "z" # Оптимизация для размера
lto = true # Включение Link Time Optimization
codegen-units = 1 # Уменьшение количества единиц компиляции для лучшей оптимизации
panic = "abort" # Уменьшение объема кода для обработки паник
strip = true # Удаление символов отладки