mod commit;
mod error;
#[cfg(feature = "serde")]
pub mod json;
mod lockfile;
mod parallel;
mod pattern;
mod plan;
#[cfg(test)]
mod proptests;
mod rewrite;
#[cfg(feature = "script")]
mod script;
mod search;
#[cfg(any(
feature = "lang-rust",
feature = "lang-ts",
feature = "lang-js",
feature = "lang-python",
))]
mod structural;
mod template_scan;
mod walker;
pub use commit::{ApplyOutcome, RecoverySummary, apply_changes, recover_sweep};
pub use error::{Error, Result};
pub use lockfile::{WorkspaceLock, acquire_workspace_lock};
pub use parallel::build_pool;
pub use pattern::{CompiledPattern, PatternOptions};
#[cfg(feature = "script")]
pub use plan::plan_rewrite_scripted;
pub use plan::{FileChange, Plan, PlanOptions, PlanOutcome, check_match_counts, plan_rewrite};
#[cfg(feature = "script")]
pub use rewrite::rewrite_text_scripted;
pub use rewrite::{RewriteOutcome, label_for_path, rewrite_text, unified_diff};
#[cfg(feature = "script")]
pub use script::ScriptRewriter;
pub use search::{SearchFile, SearchMatch, SearchOptions, SearchPlan, plan_search};
#[cfg(any(
feature = "lang-rust",
feature = "lang-ts",
feature = "lang-js",
feature = "lang-python",
))]
pub use structural::{
Language, StructuralOutcome, compile_friendly_query, plan_structural_rewrite,
plan_structural_search, structural_rewrite, structural_rewrite_friendly, structural_search,
};
pub use walker::{WalkOptions, walk_paths};