sicth 1.1.0

A minimal TUI file navigator with fuzzy search
[package]
name = "sicth"
version = "1.1.0"
edition = "2021"
rust-version = "1.90.0"
description = "A minimal TUI file navigator with fuzzy search"
authors = ["reekta92 <mdag.92988@protonmail.com>"]
repository = "https://github.com/reekta92/sicth"
homepage = "https://github.com/reekta92/sicth"
license = "GPL-3.0-only"
readme = "README.md"
keywords = ["tui", "file-manager", "terminal", "fuzzy", "navigator"]
categories = ["command-line-utilities"]
exclude = ["assets/*", ".github/*", "PKGBUILD"]
[lints.rust]
unused_imports = "allow"
unnameable_test_items = "allow"
dead_code = "allow"

[lints.clippy]
too_many_lines = "allow"
if_not_else = "allow"
map_unwrap_or = "allow"
cast_lossless = "allow"
single_match_else = "allow"
redundant_closure_for_method_calls = "allow"
pedantic = { level = "warn", priority = -1 }
doc_markdown = "allow"
match_same_arms = "allow"
ref_option = "allow"
uninlined_format_args = "allow"
items_after_statements = "allow"
collapsible_else_if = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
needless_pass_by_value = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
wildcard_imports = "allow"
unnested_or_patterns = "allow"
fn_params_excessive_bools = "allow"
struct_excessive_bools = "allow"

[dependencies]
ignore = "0.4.32"
infer = "0.22.0"
nucleo = "0.5.0"
nucleo-matcher = "0.3.1"
open = "5.4.0"
ratatui = { version = "0.30.2", default-features = false, features = ["crossterm"] }

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true


[package.metadata.deb]
name = "sicth"
maintainer = "reekta92 <mdag.92988@protonmail.com>"
copyright = "2025, reekta92"
depends = "libc6 (>= 2.31)"
section = "utils"
priority = "optional"
assets = [
    ["target/release/sicth", "usr/bin/sicth", "755"],
]
extended-description = "A minimal TUI file navigator with fuzzy search, Nerd Font icons, and shell integration."

[package.metadata.generate-rpm]
name = "sicth"
assets = [
    { source = "target/release/sicth", dest = "/usr/bin/sicth", mode = "0755" },
]