gitgrip 0.17.1

Multi-repo workflow tool - manage multiple git repositories as one
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "gitgrip"
version = "0.17.1"
authors = ["Layne Penney"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-repo workflow tool - manage multiple git repositories as one"
homepage = "https://github.com/laynepenney/gitgrip"
documentation = "https://docs.rs/gitgrip"
readme = "README.md"
keywords = [
    "git",
    "monorepo",
    "workflow",
    "multi-repo",
    "cli",
]
categories = [
    "development-tools",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/laynepenney/gitgrip"

[features]
default = ["telemetry"]
gitoxide = ["gix"]
integration-tests = []
max-perf = ["tracing/max_level_off"]
release-logs = ["tracing/release_max_level_info"]
telemetry = []

[lib]
name = "gitgrip"
path = "src/lib.rs"

[[bin]]
name = "gitgrip"
path = "src/main.rs"

[[bin]]
name = "gr"
path = "src/main.rs"

[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"

[[test]]
name = "griptree_tests"
path = "tests/griptree_tests.rs"

[[test]]
name = "init_e2e"
path = "tests/init_e2e.rs"

[[test]]
name = "multi_provider_e2e"
path = "tests/multi_provider_e2e.rs"

[[test]]
name = "platform_integration"
path = "tests/platform_integration.rs"

[[test]]
name = "test_add"
path = "tests/test_add.rs"

[[test]]
name = "test_agent"
path = "tests/test_agent.rs"

[[test]]
name = "test_branch"
path = "tests/test_branch.rs"

[[test]]
name = "test_checkout"
path = "tests/test_checkout.rs"

[[test]]
name = "test_cherry_pick"
path = "tests/test_cherry_pick.rs"

[[test]]
name = "test_ci"
path = "tests/test_ci.rs"

[[test]]
name = "test_commit"
path = "tests/test_commit.rs"

[[test]]
name = "test_diff_e2e"
path = "tests/test_diff_e2e.rs"

[[test]]
name = "test_edge_cases"
path = "tests/test_edge_cases.rs"

[[test]]
name = "test_errors"
path = "tests/test_errors.rs"

[[test]]
name = "test_forall"
path = "tests/test_forall.rs"

[[test]]
name = "test_gc"
path = "tests/test_gc.rs"

[[test]]
name = "test_grep"
path = "tests/test_grep.rs"

[[test]]
name = "test_group"
path = "tests/test_group.rs"

[[test]]
name = "test_json_output"
path = "tests/test_json_output.rs"

[[test]]
name = "test_link"
path = "tests/test_link.rs"

[[test]]
name = "test_manifest_cmd"
path = "tests/test_manifest_cmd.rs"

[[test]]
name = "test_mcp_server"
path = "tests/test_mcp_server.rs"

[[test]]
name = "test_platform_bitbucket"
path = "tests/test_platform_bitbucket.rs"

[[test]]
name = "test_platform_github"
path = "tests/test_platform_github.rs"

[[test]]
name = "test_platform_github_auth"
path = "tests/test_platform_github_auth.rs"

[[test]]
name = "test_pr_checks_status"
path = "tests/test_pr_checks_status.rs"

[[test]]
name = "test_pr_list_view"
path = "tests/test_pr_list_view.rs"

[[test]]
name = "test_pr_merge"
path = "tests/test_pr_merge.rs"

[[test]]
name = "test_prune"
path = "tests/test_prune.rs"

[[test]]
name = "test_pull"
path = "tests/test_pull.rs"

[[test]]
name = "test_push"
path = "tests/test_push.rs"

[[test]]
name = "test_rebase"
path = "tests/test_rebase.rs"

[[test]]
name = "test_release"
path = "tests/test_release.rs"

[[test]]
name = "test_repo_commands"
path = "tests/test_repo_commands.rs"

[[test]]
name = "test_run_env"
path = "tests/test_run_env.rs"

[[test]]
name = "test_status"
path = "tests/test_status.rs"

[[test]]
name = "test_sync"
path = "tests/test_sync.rs"

[[test]]
name = "test_tree"
path = "tests/test_tree.rs"

[[test]]
name = "test_verify"
path = "tests/test_verify.rs"

[[test]]
name = "workflow_tests"
path = "tests/workflow_tests.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.anyhow]
version = "1"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
]

[dependencies.clap_complete]
version = "4.5.65"

[dependencies.colored]
version = "2"

[dependencies.dialoguer]
version = "0.11"

[dependencies.futures]
version = "0.3"

[dependencies.git2]
version = "0.19"

[dependencies.gix]
version = "0.68"
features = [
    "blocking-network-client",
    "blocking-http-transport-reqwest-rust-tls",
]
optional = true
default-features = false

[dependencies.indicatif]
version = "0.17"

[dependencies.octocrab]
version = "0.41"
features = ["rustls-webpki-tokio"]

[dependencies.once_cell]
version = "1"

[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]

[dependencies.regex]
version = "1"

[dependencies.reqwest]
version = "0.12"
features = ["json"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "process",
    "time",
]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.url]
version = "2"

[dependencies.urlencoding]
version = "2"

[dependencies.which]
version = "7"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.wiremock]
version = "0.6"

[profile.release]
lto = true
codegen-units = 1
strip = true