[package]
edition = "2024"
rust-version = "1.85"
name = "synh8"
version = "0.1.1"
build = false
exclude = [
"CLAUDE.md",
"TODO.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A synaptic-inspired TUI for managing APT packages on Debian/Ubuntu. Linux only."
readme = "README.md"
keywords = [
"apt",
"tui",
"debian",
"ubuntu",
"package-manager",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/folknor/synh8"
[features]
hotpath = ["hotpath/hotpath"]
hotpath-alloc = [
"hotpath/hotpath",
"hotpath/hotpath-alloc",
]
[lib]
name = "synh8"
path = "src/lib.rs"
[[bin]]
name = "debug_cli"
path = "src/bin/debug_cli.rs"
[[bin]]
name = "synh8"
path = "src/main.rs"
[dependencies.color-eyre]
version = "0.6"
[dependencies.crossterm]
version = "0.29"
[dependencies.hotpath]
version = "0.14"
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.30"
[dependencies.rusqlite]
version = "0.39.0"
features = ["bundled"]
[dependencies.rust-apt]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[lints.clippy]
await_holding_lock = "deny"
await_holding_refcell_ref = "deny"
clone_on_ref_ptr = "deny"
cloned_instead_of_copied = "deny"
collapsible_match = "deny"
explicit_iter_loop = "deny"
float_cmp = "deny"
if_same_then_else = "deny"
implicit_clone = "deny"
let_underscore_must_use = "deny"
manual_string_new = "deny"
needless_borrow = "deny"
ok_expect = "deny"
ptr_arg = "deny"
redundant_closure_for_method_calls = "deny"
redundant_locals = "deny"
regex_creation_in_loops = "deny"
semicolon_if_nothing_returned = "deny"
uninlined_format_args = "deny"
unnecessary_sort_by = "deny"
unnecessary_unwrap = "deny"
wrong_self_convention = "deny"