[package]
edition = "2024"
name = "innards"
version = "0.1.1"
build = false
exclude = ["*.gif"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inline terminal tools for Rust symbol navigation, editing, and paging"
homepage = "https://github.com/rdaum/innards"
readme = "README.md"
keywords = [
"tui",
"lsp",
"rust-analyzer",
"editor",
"terminal",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "GPL-3.0-only"
repository = "https://github.com/rdaum/innards"
[package.metadata.deb]
name = "innards"
maintainer = "Ryan Daum <ryan.daum@gmail.com>"
copyright = "2026, Ryan Daum"
license-file = [
"LICENSE",
"0",
]
extended-description = """
Innards is a set of inline terminal tools for moving through source code
without losing shell context. It includes navsplat, a rust-analyzer-backed
symbol picker; inmacs, a small inline editor; and inpage, a read-only inline
pager.
"""
section = "utils"
priority = "optional"
depends = "$auto"
assets = [
[
"target/release/navsplat",
"usr/bin/navsplat",
"755",
],
[
"target/release/inmacs",
"usr/bin/inmacs",
"755",
],
[
"target/release/inpage",
"usr/bin/inpage",
"755",
],
[
"README.md",
"usr/share/doc/innards/README.md",
"644",
],
[
"LICENSE",
"usr/share/doc/innards/LICENSE",
"644",
],
]
[lib]
name = "innards"
path = "src/lib.rs"
[[bin]]
name = "inmacs"
path = "src/bin/inmacs.rs"
[[bin]]
name = "inpage"
path = "src/bin/inpage.rs"
[[bin]]
name = "navsplat"
path = "src/bin/navsplat.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.5.51"
features = ["derive"]
[dependencies.crossterm]
version = "0.29.0"
[dependencies.ratatui]
version = "0.30.0"
[dependencies.ropey]
version = "1.6.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.syntect]
version = "5.3.0"
[dependencies.toml]
version = "0.9.8"
[dependencies.tui-input]
version = "0.15.3"
[dependencies.tui-spinner]
version = "0.2.3"
[dependencies.url]
version = "2.5.7"