[[bin]]
name = "tms"
path = "src/main.rs"
[dependencies.aho-corasick]
version = "1.1"
[dependencies.clap]
features = ["cargo", "derive"]
version = "4.5"
[dependencies.clap_complete]
version = "4.5"
[dependencies.config]
default-features = false
features = ["toml"]
version = "0.14"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "5.0.1"
[dependencies.error-stack]
version = "0.5"
[dependencies.git2]
features = ["vendored-openssl"]
version = "0.19"
[dependencies.nucleo]
version = "0.5.0"
[dependencies.ratatui]
features = ["serde"]
version = "0.28"
[dependencies.serde]
version = "1.0"
[dependencies.serde_derive]
version = "1.0"
[dependencies.shell-words]
version = "1.1.0"
[dependencies.shellexpand]
version = "3.1.0"
[dependencies.toml]
version = "0.8"
[dev-dependencies.anyhow]
version = "1.0.86"
[dev-dependencies.assert_cmd]
version = "2.0.14"
[dev-dependencies.once_cell]
version = "1.18.0"
[dev-dependencies.predicates]
version = "3.1.0"
[dev-dependencies.pretty_assertions]
version = "1.4.0"
[dev-dependencies.tempfile]
version = "3.10.1"
[lib]
name = "tms"
path = "src/lib.rs"
[package]
authors = ["Jared Moulton <jaredmoulton3@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
Tmux Sessionizer is a cli tool to fuzzy find all git repositories in a list of
specified folders and open them as a new tmux session. Also, for git worktrees,
this tool opens all checked out worktrees as new windows.
"""
edition = "2021"
exclude = ["images/*"]
homepage = "https://github.com/jrmoulton/tmux-sessionizer"
license = "MIT"
name = "tmux-sessionizer"
readme = "README.md"
repository = "https://github.com/jrmoulton/tmux-sessionizer"
version = "0.4.4"
[profile.dist]
codegen-units = 1
inherits = "release"
lto = "thin"
strip = true
[[test]]
name = "cli"
path = "tests/cli.rs"