[package]
edition = "2024"
rust-version = "1.95"
name = "ublx"
version = "0.1.5"
authors = ["AHurowitz <thicclatka@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TUI to index once, enrich with metadata, and browse a flat snapshot in a 3-pane layout with multiple modes."
homepage = "https://github.com/thicclatka/ublx"
documentation = "https://docs.rs/ublx"
readme = "README.md"
keywords = [
"tui",
"cli",
"file-manager",
"file-browser",
]
categories = [
"command-line-utilities",
"database",
"development-tools",
"text-processing",
"visualization",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/thicclatka/ublx"
[package.metadata.docs.rs]
default-features = false
[features]
default = ["zahir-netcdf"]
zahir-netcdf = ["zahirscan/netcdf"]
[lib]
name = "ublx"
path = "src/lib.rs"
[[bin]]
name = "ublx"
path = "src/main.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "duplicates"
path = "tests/duplicates.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "file_ops"
path = "tests/file_ops.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "kv_tables"
path = "tests/kv_tables.rs"
[[test]]
name = "main_tabs"
path = "tests/main_tabs.rs"
[[test]]
name = "notifications"
path = "tests/notifications.rs"
[[test]]
name = "paths"
path = "tests/paths.rs"
[[test]]
name = "settings_overlay"
path = "tests/settings_overlay.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[[test]]
name = "viewers"
path = "tests/viewers.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.blake3]
version = "1.8.5"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.comfy-table]
version = "7.2.2"
[dependencies.crossterm]
version = "0.29"
[dependencies.csv]
version = "1.4.0"
[dependencies.env_logger]
version = "0.11.9"
[dependencies.fuzzy-matcher]
version = "0.3.7"
[dependencies.image]
version = "0.25"
[dependencies.lofty]
version = "0.24.0"
[dependencies.log]
version = "0.4.29"
[dependencies.nefaxer]
version = "0.1.8"
[dependencies.notify]
version = "8.2.0"
[dependencies.pulldown-cmark]
version = "0.13.3"
[dependencies.ratatui]
version = "0.30"
[dependencies.ratatui-image]
version = "10"
features = [
"crossterm",
"image-defaults",
]
default-features = false
[dependencies.ratatui-notifications]
version = "0.1.0"
[dependencies.rayon]
version = "1.12.0"
[dependencies.rusqlite]
version = "0.39.0"
features = ["bundled-sqlcipher"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.sublime-syntaxes]
version = "0.2.0"
[dependencies.syntect]
version = "5.3.0"
[dependencies.tokio]
version = "1.52.1"
features = [
"rt-multi-thread",
"sync",
]
[dependencies.toml]
version = "1.1.2"
[dependencies.tui-logger]
version = "0.18.2"
features = ["crossterm"]
[dependencies.unicode-width]
version = "0.2"
[dependencies.zahirscan]
version = "0.3.1"
default-features = false
[dependencies.zip]
version = "8.6.0"
features = ["deflate"]
default-features = false
[dev-dependencies.anyhow]
version = "1.0.102"
[dev-dependencies.log]
version = "0.4.29"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true