[package]
edition = "2021"
rust-version = "1.70"
name = "claude_runner_core"
version = "1.0.0"
authors = ["Kostiantyn Mysnyk <wandalen@obox.systems>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Claude Code process execution with builder pattern"
homepage = "https://github.com/iron-cage/claude_tools"
documentation = "https://docs.rs/claude_runner_core"
readme = "readme.md"
keywords = [
"claude",
"ai",
"runner",
"process",
"execution",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/iron-cage/claude_tools"
[features]
default = ["enabled"]
enabled = [
"dep:error_tools",
"error_tools/enabled",
"error_tools/error_untyped",
]
full = ["enabled"]
[lib]
name = "claude_runner_core"
path = "src/lib.rs"
[[test]]
name = "builder_edge_cases_test"
path = "tests/builder_edge_cases_test.rs"
[[test]]
name = "builder_methods_test"
path = "tests/builder_methods_test.rs"
[[test]]
name = "debug_advanced_params_test"
path = "tests/debug_advanced_params_test.rs"
[[test]]
name = "default_values_test"
path = "tests/default_values_test.rs"
[[test]]
name = "describe_test"
path = "tests/describe_test.rs"
[[test]]
name = "dry_run_test"
path = "tests/dry_run_test.rs"
[[test]]
name = "environment_variables_test"
path = "tests/environment_variables_test.rs"
[[test]]
name = "execution_output_test"
path = "tests/execution_output_test.rs"
[[test]]
name = "float_edge_cases_test"
path = "tests/float_edge_cases_test.rs"
[[test]]
name = "io_params_test"
path = "tests/io_params_test.rs"
[[test]]
name = "manual_edge_case_check"
path = "tests/manual_edge_case_check.rs"
[[test]]
name = "mcp_extension_params_test"
path = "tests/mcp_extension_params_test.rs"
[[test]]
name = "migration_validation_test"
path = "tests/migration_validation_test.rs"
[[test]]
name = "model_budget_params_test"
path = "tests/model_budget_params_test.rs"
[[test]]
name = "old_way_impossible_verification"
path = "tests/old_way_impossible_verification.rs"
[[test]]
name = "pattern_e_empty_and_edge_cases_test"
path = "tests/pattern_e_empty_and_edge_cases_test.rs"
[[test]]
name = "process_test"
path = "tests/process_test.rs"
[[test]]
name = "prompt_permission_params_test"
path = "tests/prompt_permission_params_test.rs"
[[test]]
name = "responsibility_single_execution_point_test"
path = "tests/responsibility_single_execution_point_test.rs"
[[test]]
name = "session_dir_tests"
path = "tests/session_dir_tests.rs"
[[test]]
name = "session_params_test"
path = "tests/session_params_test.rs"
[[test]]
name = "skip_permissions_test"
path = "tests/skip_permissions_test.rs"
[[test]]
name = "terminal_ide_params_test"
path = "tests/terminal_ide_params_test.rs"
[[test]]
name = "tool_dir_params_test"
path = "tests/tool_dir_params_test.rs"
[[test]]
name = "types_test"
path = "tests/types_test.rs"
[[test]]
name = "verbose_and_path_edge_cases_test"
path = "tests/verbose_and_path_edge_cases_test.rs"
[[test]]
name = "verification_impossibility_test"
path = "tests/verification_impossibility_test.rs"
[[test]]
name = "verification_migration_metrics_test"
path = "tests/verification_migration_metrics_test.rs"
[[test]]
name = "verification_negative_criteria_test"
path = "tests/verification_negative_criteria_test.rs"
[[test]]
name = "verification_rollback_test"
path = "tests/verification_rollback_test.rs"
[[test]]
name = "verification_shortcuts_test"
path = "tests/verification_shortcuts_test.rs"
[dependencies.claude_common]
version = "~1.0.0"
default-features = false
[dependencies.error_tools]
version = "~0.37"
optional = true
default-features = false
[dev-dependencies.tempfile]
version = "~3"
[dev-dependencies.test_tools]
version = "~0.16"
features = ["full"]
default-features = false
[lints.clippy]
absolute_paths = "allow"
arbitrary_source_item_ordering = "allow"
cast_precision_loss = "allow"
doc_include_without_cfg = "warn"
implicit_return = "allow"
inline_always = "allow"
items_after_statements = "allow"
missing_docs_in_private_items = "allow"
missing_inline_in_public_items = "warn"
mod_module_files = "allow"
module_name_repetitions = "allow"
pub_use = "allow"
question_mark_used = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "allow"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"
wildcard_imports = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe-code = "deny"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1