[package]
edition = "2021"
name = "treeflow"
version = "0.2.1"
authors = ["C P"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for simplified Git worktree management to speed up switching contexts when working collaboratively."
homepage = "https://gitlab.com/ChriPar/treeflow"
readme = "README.md"
keywords = [
"git",
"worktree",
"workflow",
"productivity",
"cli",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://gitlab.com/ChriPar/treeflow"
[lib]
name = "treeflow"
path = "src/lib.rs"
[[bin]]
name = "treeflow"
path = "src/main.rs"
[[test]]
name = "base_tests"
path = "tests/base_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "finish_tests"
path = "tests/finish_tests.rs"
[[test]]
name = "init_tests"
path = "tests/init_tests.rs"
[[test]]
name = "primary_tests"
path = "tests/primary_tests.rs"
[[test]]
name = "project_tests"
path = "tests/project_tests.rs"
[[test]]
name = "review_tests"
path = "tests/review_tests.rs"
[[test]]
name = "start_tests"
path = "tests/start_tests.rs"
[[test]]
name = "worktype_tests"
path = "tests/worktype_tests.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"env",
"derive",
]
[dependencies.clap_complete]
version = "4.6.2"
features = ["unstable-dynamic"]
[dependencies.directories]
version = "6.0.0"
[dependencies.path-clean]
version = "1.0.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.toml]
version = "1.1.2"
[dev-dependencies.assert_cmd]
version = "2.2.1"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.regex]
version = "1.12.3"
[dev-dependencies.tempdir]
version = "0.3.7"
[dev-dependencies.test-case]
version = "3.3.1"