[package]
edition = "2021"
rust-version = "1.79"
name = "grex-plugins-builtin"
version = "1.4.0"
authors = ["egoisth777"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Built-in action primitives and pack-type handlers for grex, the nested meta-repo manager. (internal plugin API; v2 will extract a stable plugin-api crate)"
documentation = "https://docs.rs/grex-plugins-builtin"
readme = false
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.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.cargo-machete]
ignored = [
"anyhow",
"grex-core",
"serde",
"serde_yaml",
"thiserror",
"tokio",
"tracing",
]
[lib]
name = "grex_plugins_builtin"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1"
[dependencies.grex-core]
version = "1.4.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
cognitive_complexity = "deny"
too_many_lines = "deny"