[package]
edition = "2021"
name = "stax"
version = "0.22.2"
authors = ["Cesar Ferreira"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "stax"
description = "Fast stacked Git branches and PRs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cesarferreira/stax"
[lib]
name = "stax"
path = "src/lib.rs"
[[bin]]
name = "st"
path = "src/main.rs"
[[bin]]
name = "stax"
path = "src/main.rs"
[[test]]
name = "additional_coverage_tests"
path = "tests/additional_coverage_tests.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "ci_tests"
path = "tests/ci_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "command_coverage_tests"
path = "tests/command_coverage_tests.rs"
[[test]]
name = "comments_tests"
path = "tests/comments_tests.rs"
[[test]]
name = "comprehensive_coverage_tests"
path = "tests/comprehensive_coverage_tests.rs"
[[test]]
name = "continue_tests"
path = "tests/continue_tests.rs"
[[test]]
name = "downstack_tests"
path = "tests/downstack_tests.rs"
[[test]]
name = "edge_cases_tests"
path = "tests/edge_cases_tests.rs"
[[test]]
name = "fold_tests"
path = "tests/fold_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "navigation_tests"
path = "tests/navigation_tests.rs"
[[test]]
name = "pr_template_tests"
path = "tests/pr_template_tests.rs"
[[test]]
name = "split_tests"
path = "tests/split_tests.rs"
[[test]]
name = "track_all_prs_tests"
path = "tests/track_all_prs_tests.rs"
[[test]]
name = "tui_commands_tests"
path = "tests/tui_commands_tests.rs"
[[test]]
name = "worktree_tests"
path = "tests/worktree_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arboard]
version = "3"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.console]
version = "0.16"
[dependencies.crossterm]
version = "0.28"
[dependencies.dialoguer]
version = "0.12"
features = [
"fuzzy-select",
"editor",
]
[dependencies.dirs]
version = "6"
[dependencies.git2]
version = "0.20"
[dependencies.indicatif]
version = "0.17"
[dependencies.octocrab]
version = "0.49"
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.ratatui]
version = "0.29"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.termimad]
version = "0.31"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.toml]
version = "0.9"
[dependencies.update-informer]
version = "1"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"