[package]
edition = "2024"
name = "try-cli"
version = "0.1.4"
authors = ["Dariusz Parys"]
build = false
exclude = [
".github",
".gitignore",
"install.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight, time-sensitive directory navigation for experiments — a fast way to jump between temporary project folders"
homepage = "https://github.com/dariuszparys/try-rs"
readme = "README.md"
keywords = [
"cli",
"navigation",
"directory",
"productivity",
"fuzzy-finder",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/dariuszparys/try-rs"
[[bin]]
name = "try"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.27"
[dependencies.dirs]
version = "5.0"
[dependencies.thiserror]
version = "1"
[dependencies.unicode-width]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"