//! Workspace filesystem tools and path trust boundary.
//!
//! Listing, reading, searching, line counting, replacement, and patching all
//! validate paths against the configured workspace before touching the host.
pub const MAX_WORKSPACE_FILE_BYTES: u64 = 2 * 1024 * 1024;
pub use tool_list;
pub use tool_patch;
pub use tool_read;
pub use tool_replace;
pub use tool_search;
pub use tool_sloc;