[package]
edition = "2024"
name = "ralph-adapters"
version = "2.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent adapters for Ralph Orchestrator (Claude, Kiro, Gemini, ACP)"
readme = false
license = "MIT"
resolver = "2"
[lib]
name = "ralph_adapters"
path = "src/lib.rs"
[[example]]
name = "pty_handle_demo"
path = "examples/pty_handle_demo.rs"
[dependencies.ansi-to-tui]
version = "8"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.nix]
version = "0.29"
features = [
"signal",
"term",
"fs",
]
[dependencies.portable-pty]
version = "0.9"
[dependencies.ralph-core]
version = "2.2.3"
[dependencies.ralph-proto]
version = "2.2.3"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.strip-ansi-escapes]
version = "0.2"
[dependencies.tempfile]
version = "3"
[dependencies.termimad]
version = "0.31"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.vt100]
version = "0.15"
[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"