17 lines
391 B
TOML
17 lines
391 B
TOML
[package]
|
|
name = "setup-repo"
|
|
version = "0.2.0"
|
|
description = "Tool to set up Git repositories for worktree development"
|
|
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license-file.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
colored = "3.0"
|
|
git = { version = "0.2.0", path = "../git" }
|
|
indicatif = "0.17"
|