[package]
edition = "2021"
name = "rust-foundry"
version = "0.1.0"
authors = [
"Logan",
"Lugina <lugina@ltechnosoft.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust Foundry bootstrapper CLI and TUI"
homepage = "https://github.com/logando-al/rust-foundry"
readme = "README.md"
keywords = [
"rust",
"cli",
"scaffold",
"bootstrap",
"template",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/logando-al/rust-foundry"
[lib]
name = "rust_foundry"
path = "src/lib.rs"
[[bin]]
name = "foundry"
path = "src/bin/foundry.rs"
[[bin]]
name = "foundry-tui"
path = "src/bin/foundry-tui.rs"
[[test]]
name = "integration_api_version_contract"
path = "tests/integration_api_version_contract.rs"
[[test]]
name = "integration_archetypes"
path = "tests/integration_archetypes.rs"
[[test]]
name = "integration_cli_json"
path = "tests/integration_cli_json.rs"
[[test]]
name = "integration_companion_layering"
path = "tests/integration_companion_layering.rs"
[[test]]
name = "integration_decision_trace_fields"
path = "tests/integration_decision_trace_fields.rs"
[[test]]
name = "integration_doctor_checks_json"
path = "tests/integration_doctor_checks_json.rs"
[[test]]
name = "integration_explain_json"
path = "tests/integration_explain_json.rs"
[[test]]
name = "integration_explain_trace_stability"
path = "tests/integration_explain_trace_stability.rs"
[[test]]
name = "integration_explicit_overrides"
path = "tests/integration_explicit_overrides.rs"
[[test]]
name = "integration_profile_selection"
path = "tests/integration_profile_selection.rs"
[[test]]
name = "integration_tui_parity"
path = "tests/integration_tui_parity.rs"
[[test]]
name = "regression_apply_gate"
path = "tests/regression_apply_gate.rs"
[[test]]
name = "regression_apply_validation_failure"
path = "tests/regression_apply_validation_failure.rs"
[[test]]
name = "regression_audit_determinism"
path = "tests/regression_audit_determinism.rs"
[[test]]
name = "regression_lock_audit_snapshot"
path = "tests/regression_lock_audit_snapshot.rs"
[[test]]
name = "regression_validation_execution"
path = "tests/regression_validation_execution.rs"
[[test]]
name = "unit_config_precedence"
path = "tests/unit_config_precedence.rs"
[[test]]
name = "unit_planner_determinism"
path = "tests/unit_planner_determinism.rs"
[[test]]
name = "unit_renderer_parity"
path = "tests/unit_renderer_parity.rs"
[[test]]
name = "unit_schema_health_checks"
path = "tests/unit_schema_health_checks.rs"
[[test]]
name = "unit_schema_strict"
path = "tests/unit_schema_strict.rs"
[[test]]
name = "unit_validation_summary"
path = "tests/unit_validation_summary.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.foundry-core]
version = "0.1.0"
[dependencies.foundry-types]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.foundry-archetypes]
version = "0.1.0"
[dev-dependencies.foundry-conventions]
version = "0.1.0"
[dev-dependencies.foundry-core]
version = "0.1.0"
[dev-dependencies.foundry-schema]
version = "0.1.0"
[dev-dependencies.foundry-template]
version = "0.1.0"
[dev-dependencies.foundry-types]
version = "0.1.0"
[dev-dependencies.foundry-validation]
version = "0.1.0"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"