[package]
edition = "2021"
rust-version = "1.90.0"
name = "sicth"
version = "0.1.0"
authors = ["reekta92 <mdag.92988@protonmail.com>"]
build = false
exclude = [
"assets/*",
".github/*",
"PKGBUILD",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal TUI file navigator with fuzzy search"
homepage = "https://github.com/reekta92/sicth"
readme = "README.md"
keywords = [
"tui",
"file-manager",
"terminal",
"fuzzy",
"navigator",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-only"
repository = "https://github.com/reekta92/sicth"
[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"
[[package.metadata.generate-rpm.assets]]
source = "target/release/sicth"
dest = "/usr/bin/sicth"
mode = "0755"
[[bin]]
name = "sicth"
path = "src/main.rs"
[dependencies.ignore]
version = "0.4.32"
[dependencies.infer]
version = "0.22.0"
[dependencies.nucleo]
version = "0.5.0"
[dependencies.nucleo-matcher]
version = "0.3.1"
[dependencies.open]
version = "5.4.0"
[dependencies.ratatui]
version = "0.30.2"
features = ["crossterm"]
default-features = false
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
collapsible_else_if = "allow"
doc_markdown = "allow"
if_not_else = "allow"
items_after_statements = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
redundant_closure_for_method_calls = "allow"
ref_option = "allow"
single_match_else = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unnested_or_patterns = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "allow"
unnameable_test_items = "allow"
unused_imports = "allow"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true