claude-code-rust 3.0.0

A native Rust terminal interface for Claude Code
Documentation
# MSRV for this CLI tool (matches rust-version in Cargo.toml)
msrv = "1.88.0"

# Binary crate -- no public API to break
avoid-breaking-exported-api = false

# Tests can use these freely; production code is gated via Cargo.toml lint levels
allow-unwrap-in-tests = true
allow-expect-in-tests = true
allow-panic-in-tests = true
allow-print-in-tests = true
allow-dbg-in-tests = true
allow-indexing-slicing-in-tests = true

# CLI tools deal with deep path nesting (e.g., ~/.config/claude_rust/...)
absolute-paths-max-segments = 3

# Short identifiers common in CLI arg parsing and loops
allowed-idents-below-min-chars = ["i", "j", "k", "x", "y", "z", "n", "s", "c", "op", "tx", "rx", "id", "ip", "os", "ex"]