[package]
edition = "2024"
rust-version = "1.85"
name = "tij"
version = "0.3.1"
authors = ["nakamura.shuta <nakamura.shuta@classmethod.jp>"]
build = false
exclude = [
".work/",
".github/",
"CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Text-mode interface for Jujutsu - a TUI for jj version control"
homepage = "https://github.com/nakamura-shuta/tij"
documentation = "https://docs.rs/tij"
readme = "README.md"
keywords = [
"jujutsu",
"jj",
"tui",
"vcs",
"git",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nakamura-shuta/tij"
[[bin]]
name = "tij"
path = "src/main.rs"
[dependencies.color-eyre]
version = "0.6.3"
[dependencies.crossterm]
version = "0.28.1"
[dependencies.ratatui]
version = "0.30.0"
[dependencies.scopeguard]
version = "1"
[dependencies.thiserror]
version = "2.0"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true