[package]
edition = "2021"
rust-version = "1.74.0"
name = "smartlog"
version = "0.6.4"
authors = ["Felipe Pires Morandini <felipepiresmorandini@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance TUI for log tailing. Auto-detects JSON, syntax highlights errors, and filters streams in real-time. Built in Rust."
homepage = "https://github.com/felipemorandini/smartlog"
documentation = "https://github.com/felipemorandini/smartlog#readme"
readme = "README.md"
keywords = [
"tui",
"log",
"tail",
"json",
"viewer",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/felipemorandini/smartlog"
[package.metadata.deb]
maintainer = "Felipe Pires Morandini <felipepiresmorandini@gmail.com>"
section = "utils"
priority = "optional"
extended-description = "A high-performance TUI for log tailing. Auto-detects JSON, syntax highlights errors, and filters streams in real-time. Built in Rust."
[lib]
name = "smartlog"
path = "src/lib.rs"
[[bin]]
name = "smartlog"
path = "src/bin/smartlog.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.29.0"
features = ["event-stream"]
[dependencies.futures-util]
version = "0.3"
[dependencies.ratatui]
version = "0.29.0"
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1.0.145"
[dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["fmt"]
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true