[package]
edition = "2024"
rust-version = "1.85"
name = "jjf"
version = "0.3.0"
authors = ["Stephen Waits <steve@waits.net>"]
build = false
exclude = [
"/.github/",
"/ux.txt",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fuzzy revision picker for jujutsu (jj). Wraps any jj subcommand with an interactive picker over jj log, with a live jj show preview pane."
homepage = "https://github.com/swaits/jjf"
documentation = "https://docs.rs/jjf"
readme = "README.md"
keywords = [
"jj",
"jujutsu",
"vcs",
"picker",
"fuzzy-finder",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/swaits/jjf"
[[bin]]
name = "jjf"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.29"
[dependencies.libc]
version = "0.2"
[dependencies.nucleo-matcher]
version = "0.3"
[profile.release]
lto = "thin"
strip = true