uv-globfilter 0.0.57

This is an internal component crate of uv
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation of PEP 639 cross-language restricted globs and a related directory traversal
//! prefilter.
//!
//! The goal is globs that are portable between languages and operating systems.

mod glob_dir_filter;
mod portable_glob;

pub use glob_dir_filter::GlobDirFilter;
pub use portable_glob::{PortableGlobError, PortableGlobParser};