claude-code-acp-rs 0.1.22

Use Claude Code from any ACP client - A Rust implementation of Claude Code ACP Agent
1
2
3
4
5
6
7
8
9
//! Permission handling for can_use_tool callback
//!
//! This module implements the SDK's can_use_tool callback for checking
//! tool permissions before execution.

pub mod can_use_tool;
pub mod strategies;

pub use can_use_tool::create_can_use_tool_callback;