Files
repo-utils/create-worktree/Cargo.toml

19 lines
483 B
TOML
Raw Normal View History

2025-05-07 18:59:03 +02:00
[package]
name = "create-worktree"
version = "0.1.0"
description = "A tool to create git worktrees with convenient branch management"
2025-05-07 20:03:31 +02:00
edition.workspace = true
authors.workspace = true
license-file.workspace = true
repository.workspace = true
2025-05-07 18:59:03 +02:00
[dependencies]
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
colored = "3.0"
indicatif = "0.17"
dirs = "6.0"
thiserror = { version = "2.0" }
2025-05-08 14:09:29 +02:00
command-with-spinner = { version = "0.1.0", path = "../command-with-spinner" }