[package]
edition = "2024"
rust-version = "1.93"
name = "elio"
version = "1.7.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Snappy, batteries-included terminal file manager with rich previews, inline images, bulk actions, and trash support."
readme = "README.md"
keywords = [
"terminal",
"file-manager",
"tui",
"preview",
"images",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/elio-fm/elio"
[package.metadata.deb]
maintainer = "Miguel Regueiro <67692547+MiguelRegueiro@users.noreply.github.com>"
license-file = [
"LICENSE-MIT",
"0",
]
section = "utils"
priority = "optional"
depends = "$auto, hicolor-icon-theme, desktop-file-utils"
extended-description = """
elio is a snappy, batteries-included terminal file manager with rich previews, inline images, bulk actions, and trash support.
"""
assets = [
[
"target/release/elio",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/elio/README.md",
"644",
],
[
"CHANGELOG.md",
"usr/share/doc/elio/CHANGELOG.md",
"644",
],
[
"packaging/linux/elio.desktop",
"usr/share/applications/elio.desktop",
"644",
],
[
"packaging/linux/icons/hicolor/48x48/apps/elio.png",
"usr/share/icons/hicolor/48x48/apps/elio.png",
"644",
],
[
"packaging/linux/icons/hicolor/128x128/apps/elio.png",
"usr/share/icons/hicolor/128x128/apps/elio.png",
"644",
],
[
"packaging/linux/icons/hicolor/256x256/apps/elio.png",
"usr/share/icons/hicolor/256x256/apps/elio.png",
"644",
],
[
"packaging/linux/icons/hicolor/512x512/apps/elio.png",
"usr/share/icons/hicolor/512x512/apps/elio.png",
"644",
],
]
[lib]
name = "elio"
path = "src/lib.rs"
[[bin]]
name = "elio"
path = "src/main.rs"
[[test]]
name = "architecture_guardrails"
path = "tests/architecture_guardrails.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "shell_integration_cli"
path = "tests/shell_integration_cli.rs"
[[test]]
name = "shell_runtime_cli"
path = "tests/shell_runtime_cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.cfb]
version = "0.14"
[dependencies.color_quant]
version = "1.1"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1.1"
features = ["rust_backend"]
default-features = false
[dependencies.image]
version = "0.25"
features = [
"gif",
"ico",
"jpeg",
"png",
"webp",
]
default-features = false
[dependencies.json5]
version = "1.3"
[dependencies.libc]
version = "0.2"
[dependencies.lofty]
version = "0.24"
[dependencies.notify]
version = "8.2"
[dependencies.pulldown-cmark]
version = "0.13"
[dependencies.quick-xml]
version = "0.39"
[dependencies.ratatui]
version = "0.30"
features = [
"crossterm",
"crossterm_0_29",
]
default-features = false
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.syntect]
version = "5.2"
features = [
"parsing",
"regex-onig",
]
default-features = false
[dependencies.tar]
version = "0.4"
[dependencies.toml]
version = "1.1"
[dependencies.toml_edit]
version = "0.25"
[dependencies.trash]
version = "5.2.5"
[dependencies.unicode-width]
version = "0.2"
[dependencies.yaml_serde]
version = "0.10"
[dependencies.zip]
version = "8.6"
features = ["deflate"]
default-features = false
[build-dependencies.syntect]
version = "5.2"
features = [
"default-syntaxes",
"yaml-load",
"regex-onig",
]
default-features = false
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"
features = [
"NSBundle",
"NSFileManager",
"NSString",
"NSURL",
]
[profile.release]
lto = "thin"
codegen-units = 1
strip = true