[package]
edition = "2024"
name = "ralph-cli"
version = "2.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for Ralph Orchestrator"
homepage = "https://github.com/mikeyobrien/ralph-orchestrator"
readme = false
license = "MIT"
repository = "https://github.com/mikeyobrien/ralph-orchestrator"
resolver = "2"
[package.metadata.dist]
dist = true
[lib]
name = "ralph_cli"
path = "src/lib.rs"
[[bin]]
name = "ralph"
path = "src/main.rs"
[[example]]
name = "calculator"
path = "examples/calculator.rs"
[[example]]
name = "greeter"
path = "examples/greeter.rs"
[[test]]
name = "clean_diagnostics"
path = "tests/clean_diagnostics.rs"
[[test]]
name = "integration_clean"
path = "tests/integration_clean.rs"
[[test]]
name = "integration_config_precedence"
path = "tests/integration_config_precedence.rs"
[[test]]
name = "integration_events_isolation"
path = "tests/integration_events_isolation.rs"
[[test]]
name = "integration_hooks_validate"
path = "tests/integration_hooks_validate.rs"
[[test]]
name = "integration_loops_merge"
path = "tests/integration_loops_merge.rs"
[[test]]
name = "integration_memory"
path = "tests/integration_memory.rs"
[[test]]
name = "integration_merge_button"
path = "tests/integration_merge_button.rs"
[[test]]
name = "integration_preflight"
path = "tests/integration_preflight.rs"
[[test]]
name = "integration_resume"
path = "tests/integration_resume.rs"
[[test]]
name = "integration_run"
path = "tests/integration_run.rs"
[[test]]
name = "integration_run_presets"
path = "tests/integration_run_presets.rs"
[[test]]
name = "integration_skill"
path = "tests/integration_skill.rs"
[[test]]
name = "integration_subprocess_tui_lock"
path = "tests/integration_subprocess_tui_lock.rs"
[[test]]
name = "integration_tasks"
path = "tests/integration_tasks.rs"
[[test]]
name = "integration_web"
path = "tests/integration_web.rs"
[[test]]
name = "trace_layer_integration_test"
path = "tests/trace_layer_integration_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"std",
"cargo",
]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.indicatif]
version = "0.17"
[dependencies.keyring]
version = "3"
features = [
"apple-native",
"linux-native",
]
[dependencies.open]
version = "5"
[dependencies.ralph-adapters]
version = "2.7.0"
[dependencies.ralph-core]
version = "2.7.0"
features = ["recording"]
[dependencies.ralph-proto]
version = "2.7.0"
[dependencies.ralph-telegram]
version = "2.7.0"
[dependencies.ralph-tui]
version = "2.7.0"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.scopeguard]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = [
"signal",
"term",
"fs",
]
[lints.clippy]
assigning_clones = "allow"
bind_instead_of_map = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
collapsible_match = "allow"
doc_markdown = "allow"
field_reassign_with_default = "allow"
format_push_string = "allow"
ignored_unit_patterns = "allow"
io_other_error = "allow"
items_after_statements = "allow"
manual_let_else = "allow"
manual_pattern_char_comparison = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
range_plus_one = "allow"
redundant_closure = "allow"
redundant_closure_for_method_calls = "allow"
redundant_else = "allow"
return_self_not_must_use = "allow"
semicolon_if_nothing_returned = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_complexity = "allow"
uninlined_format_args = "allow"
unnecessary_debug_formatting = "allow"
unnecessary_wraps = "allow"
unused_self = "allow"
used_underscore_binding = "allow"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"