[package]
edition = "2024"
name = "rch-common"
version = "1.0.26"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared types and utilities for Remote Compilation Helper"
homepage = "https://github.com/Dicklesworthstone/remote_compilation_helper"
readme = "README.md"
keywords = [
"compilation",
"remote",
"build",
"ai",
"agent",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/Dicklesworthstone/remote_compilation_helper"
[features]
default = ["rich-ui"]
rich-ui = ["rich_rust"]
[lib]
name = "rch_common"
path = "src/lib.rs"
doctest = false
[[test]]
name = "ci_test_tiers_e2e"
path = "tests/ci_test_tiers_e2e.rs"
[[test]]
name = "classify_proptest"
path = "tests/classify_proptest.rs"
[[test]]
name = "contract_drift_e2e"
path = "tests/contract_drift_e2e.rs"
[[test]]
name = "cross_repo_path_deps_e2e"
path = "tests/cross_repo_path_deps_e2e.rs"
[[test]]
name = "cross_worker_parity_e2e"
path = "tests/cross_worker_parity_e2e.rs"
[[test]]
name = "dependabot_automerge_workflow"
path = "tests/dependabot_automerge_workflow.rs"
[[test]]
name = "dependency_closure_planner"
path = "tests/dependency_closure_planner.rs"
[[test]]
name = "deterministic_replay_e2e"
path = "tests/deterministic_replay_e2e.rs"
[[test]]
name = "docs_validation_e2e"
path = "tests/docs_validation_e2e.rs"
[[test]]
name = "fault_injection_e2e"
path = "tests/fault_injection_e2e.rs"
[[test]]
name = "feature_flags_rollout_e2e"
path = "tests/feature_flags_rollout_e2e.rs"
[[test]]
name = "local_remote_parity_e2e"
path = "tests/local_remote_parity_e2e.rs"
[[test]]
name = "performance_budget_e2e"
path = "tests/performance_budget_e2e.rs"
[[test]]
name = "process_triage_e2e"
path = "tests/process_triage_e2e.rs"
[[test]]
name = "readme_regressions"
path = "tests/readme_regressions.rs"
[[test]]
name = "redaction_retention_e2e"
path = "tests/redaction_retention_e2e.rs"
[[test]]
name = "release_gate_signoff_e2e"
path = "tests/release_gate_signoff_e2e.rs"
[[test]]
name = "reliability_coverage_matrix_e2e"
path = "tests/reliability_coverage_matrix_e2e.rs"
[[test]]
name = "reliability_doctor_e2e"
path = "tests/reliability_doctor_e2e.rs"
[[test]]
name = "repo_convergence_e2e"
path = "tests/repo_convergence_e2e.rs"
[[test]]
name = "schema_contract_e2e"
path = "tests/schema_contract_e2e.rs"
[[test]]
name = "slo_guardrails_e2e"
path = "tests/slo_guardrails_e2e.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "soak_concurrency_e2e"
path = "tests/soak_concurrency_e2e.rs"
[[test]]
name = "ux_regression_e2e"
path = "tests/ux_regression_e2e.rs"
[[bench]]
name = "classifier"
path = "benches/classifier.rs"
harness = false
[[bench]]
name = "reliability_bench"
path = "benches/reliability_bench.rs"
harness = false
[[bench]]
name = "ui_bench"
path = "benches/ui_bench.rs"
harness = false
[dependencies.anyhow]
version = "1.0.101"
[dependencies.blake3]
version = "1.8.3"
[dependencies.chrono]
version = "0.4.43"
features = ["serde"]
[dependencies.dirs]
version = "6.0"
[dependencies.memchr]
version = "2.8.0"
[dependencies.object]
version = "0.38.1"
features = [
"read",
"elf",
"macho",
]
default-features = false
[dependencies.rand]
version = "0.10.1"
[dependencies.regex]
version = "1.12.3"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.shell-escape]
version = "0.1.5"
[dependencies.shellexpand]
version = "3.1.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.toml]
version = "1.0"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-appender]
version = "0.2.4"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"json",
]
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.uuid]
version = "1.21.0"
features = [
"v4",
"serde",
]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.serde_yaml_ng]
version = "0.10.0"
[dev-dependencies.tempfile]
version = "3.25.0"
[dev-dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"env-filter",
"json",
]
[target."cfg(unix)".dependencies.openssh]
version = "0.11.6"
[target."cfg(unix)".dependencies.rich_rust]
version = "0.2.1"
optional = true
[target."cfg(unix)".dependencies.whoami]
version = "2.1.2"
[lints.rust]
unsafe_code = "deny"