//! A library for recursive directory copying with customizable options.
//!
//! This crate provides a simple interface to copy directories and files
//! while handling symlinks, permissions, and error reporting.
/// Copies a directory or file from the source to the destination recursively.
pub use copy_recursive;
/// Error types related to the copy operations.
pub use CopyError;
/// Configuration options for defining the behavior of the copy process.
pub use CopyOptions;