//! An evaluator for `.gitignore` files in a given directory and its parent directories.
//!
//! The full specification of the `.gitignore` format, along with the behavior and hierarchy of `.gitignore` files,
//! can be found in the [git documentation](https://git-scm.com/docs/gitignore).
pub use Evaluator;
pub use File;
pub use Glob;
pub use Error;
pub use Result;