[[bin]]
name = "worktree-bin"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive", "env", "color"]
version = "4.4"
[dependencies.clap_complete]
version = "4.4"
[dependencies.dirs]
version = "6.0"
[dependencies.git2]
version = "0.20"
[dependencies.glob]
version = "0.3"
[dependencies.inquire]
version = "0.7"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.toml]
version = "0.9"
[dev-dependencies.temp-env]
version = "0.3"
[dev-dependencies.tempfile]
version = "3.8"
[lib]
name = "worktree"
path = "src/lib.rs"
[lints.clippy]
clone_on_ref_ptr = "warn"
expect_used = "warn"
inefficient_to_string = "warn"
large_enum_variant = "warn"
manual_let_else = "warn"
missing_docs_in_private_items = "allow"
missing_errors_doc = "warn"
must_use_candidate = "warn"
needless_pass_by_value = "warn"
panic = "deny"
redundant_closure_for_method_calls = "warn"
todo = "warn"
unimplemented = "warn"
unnecessary_wraps = "warn"
unused_self = "warn"
unwrap_used = "deny"
[package]
authors = ["Chris Freeman <cfreeman.code@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A powerful CLI tool for managing git worktrees with enhanced features including centralized storage, automatic config file synchronization, and intelligent branch management"
edition = "2021"
homepage = "https://github.com/cafreeman/worktree"
keywords = ["git", "worktree", "cli", "development", "branch"]
license = "MIT"
name = "worktree"
readme = "README.md"
repository = "https://github.com/cafreeman/worktree"
version = "0.1.0"
[[test]]
name = "create_tests"
path = "tests/create_tests.rs"
[[test]]
name = "list_tests"
path = "tests/list_tests.rs"
[[test]]
name = "remove_tests"
path = "tests/remove_tests.rs"
[[test]]
name = "status_tests"
path = "tests/status_tests.rs"
[[test]]
name = "sync_config_tests"
path = "tests/sync_config_tests.rs"
[[test]]
name = "test_helpers"
path = "tests/test_helpers.rs"