innards 0.3.0

Inline terminal tools for Rust symbol navigation, editing, and paging
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "innards"
version = "0.3.0"
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. It also includes inbase, an inline Git interactive rebase sequence
editor, and inlog, an inline Git log browser.
"""
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",
],
    [
    "target/release/inbase",
    "usr/bin/inbase",
    "755",
],
    [
    "target/release/inlog",
    "usr/bin/inlog",
    "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 = "inbase"
path = "src/bin/inbase.rs"

[[bin]]
name = "inlog"
path = "src/bin/inlog.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"