[package]
edition = "2024"
rust-version = "1.85"
name = "wtui"
version = "0.1.1"
authors = ["Will Bradley <williambbradley@gmail.com>"]
build = false
exclude = [
"COMPLETED.md",
"PLAN.md",
"docs/",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A terminal UI and CLI for managing Git worktrees across repositories"
homepage = "https://github.com/wbbradley/wt"
readme = "README.md"
keywords = [
"git",
"worktree",
"github",
"tui",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/wbbradley/wt"
[[bin]]
name = "wt"
path = "src/main.rs"
[[test]]
name = "bash_shell"
path = "tests/bash_shell.rs"
[[test]]
name = "navigation_cli"
path = "tests/navigation_cli.rs"
[[test]]
name = "repo_cli"
path = "tests/repo_cli.rs"
[[test]]
name = "worktree_cli"
path = "tests/worktree_cli.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.fs2]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.29"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tempfile]
version = "3.20"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3"
features = ["parsing"]
[dependencies.ureq]
version = "3.1"
features = ["json"]