lmrc-cli 0.3.8

CLI tool for scaffolding LMRC Stack infrastructure projects
Documentation
[package]
name = "lmrc-cli"
version = "0.3.8"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "CLI tool for scaffolding LMRC Stack infrastructure projects"
keywords = ["cli", "infrastructure", "devops", "scaffold"]
categories = ["command-line-utilities", "development-tools"]

# Include embedded apps from embedded-apps/ directory
# NOTE: Cargo will still filter out directories with Cargo.toml files (nested packages)
# Solution: Apps have BOTH Cargo.toml (for workspace testing) AND Cargo.toml.template (for packaging)
# CI removes Cargo.toml files from git index before packaging, only .template files are packaged
include = [
    "src/**/*",
    "build.rs",
    "Cargo.toml",
    # Include all embedded apps files (wildcard approach)
    "embedded-apps/**/*",
    # Exclude build artifacts and dependencies
    "!embedded-apps/*/target",
    "!embedded-apps/*/node_modules",
]

[package.metadata.lmrc]
# Dependency versions for generated projects (updated by lmrc-release-manager)
dep-version = "0.3.8"

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

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

[dependencies]
# Workspace libraries
lmrc-config-validator = { workspace = true }
lmrc-cargo-workspace = { workspace = true }
lmrc-toml-writer = { workspace = true }
lmrc-pipeline = { workspace = true }

# CLI framework
clap = { workspace = true }
inquire = { workspace = true }

# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
toml_edit = { workspace = true }

# Error handling
thiserror = { workspace = true }

# Async runtime
tokio = { workspace = true }

# File system operations
walkdir = "2.5"
include_dir = "0.7"

# Logging
tracing = { workspace = true }
tracing-subscriber = "0.3"

# Colors for terminal output
colored = "3"

[build-dependencies]
toml = { workspace = true }

[dev-dependencies]
# Testing utilities
tempfile = "3.13"
assert_cmd = "2.0"
predicates = "3.0"
assert_fs = "1.1"
serde_yaml = "0.9"
validator = { version = "0.18", features = ["derive"] }

# Async runtime for tests
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }