[package]
edition = "2021"
rust-version = "1.79"
name = "grex-cli"
version = "1.3.1"
authors = ["egoisth777"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "grex — nested meta-repo manager. Pack-based, agent-native, Rust-fast."
homepage = "https://github.com/egoisth777/grex"
documentation = "https://docs.rs/grex-cli"
readme = "README.md"
keywords = [
"dev-environment",
"orchestrator",
"pack",
"mcp",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/egoisth777/grex"
[package.metadata.cargo-machete]
ignored = [
"comfy-table",
"grex-core",
"grex-plugins-builtin",
"owo-colors",
"serde",
"serde_json",
"tokio",
"tracing",
"tracing-subscriber",
]
[lib]
name = "grex_cli"
path = "src/lib.rs"
[[bin]]
name = "grex"
path = "src/main.rs"
[[test]]
name = "add_cli"
path = "tests/add_cli.rs"
[[test]]
name = "add_cwd_relative"
path = "tests/add_cwd_relative.rs"
[[test]]
name = "cli_alias"
path = "tests/cli_alias.rs"
[[test]]
name = "cli_cwd_default"
path = "tests/cli_cwd_default.rs"
[[test]]
name = "cli_json"
path = "tests/cli_json.rs"
[[test]]
name = "cli_migrate_lockfile"
path = "tests/cli_migrate_lockfile.rs"
[[test]]
name = "cli_parallel"
path = "tests/cli_parallel.rs"
[[test]]
name = "doctor_cli"
path = "tests/doctor_cli.rs"
[[test]]
name = "doctor_scan_undeclared"
path = "tests/doctor_scan_undeclared.rs"
[[test]]
name = "global_flags"
path = "tests/global_flags.rs"
[[test]]
name = "help_output"
path = "tests/help_output.rs"
[[test]]
name = "import_cli"
path = "tests/import_cli.rs"
[[test]]
name = "import_then_sync"
path = "tests/import_then_sync.rs"
[[test]]
name = "json_output"
path = "tests/json_output.rs"
[[test]]
name = "legacy_workspace_migration"
path = "tests/legacy_workspace_migration.rs"
[[test]]
name = "license_metadata"
path = "tests/license_metadata.rs"
[[test]]
name = "ls_basic"
path = "tests/ls_basic.rs"
[[test]]
name = "pack_template_smoke"
path = "tests/pack_template_smoke.rs"
[[test]]
name = "plain_git_children_sync"
path = "tests/plain_git_children_sync.rs"
[[test]]
name = "positional_args"
path = "tests/positional_args.rs"
[[test]]
name = "positioning_test"
path = "tests/positioning_test.rs"
[[test]]
name = "property_flags"
path = "tests/property_flags.rs"
[[test]]
name = "serve_smoke"
path = "tests/serve_smoke.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "sync_e2e"
path = "tests/sync_e2e.rs"
[[test]]
name = "sync_no_gitignore_write"
path = "tests/sync_no_gitignore_write.rs"
[[test]]
name = "tracing_to_stderr"
path = "tests/tracing_to_stderr.rs"
[[test]]
name = "verb_parsing"
path = "tests/verb_parsing.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.grex-core]
version = "1.3.1"
[dependencies.grex-mcp]
version = "1.3.1"
[dependencies.grex-plugins-builtin]
version = "1.3.1"
[dependencies.owo-colors]
version = "4"
[dependencies.rmcp]
version = "1.5.0"
features = ["transport-io"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cognitive_complexity = "deny"
too_many_lines = "deny"