diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 7aa1cf6eb1d..c28eb51d59d 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -601,13 +601,13 @@ pub struct MatchOptions { * currently only considers upper/lower case relationships between ASCII characters, * but in future this might be extended to work with Unicode. */ - case_sensitive: bool, + pub case_sensitive: bool, /** * If this is true then path-component separator characters (e.g. `/` on Posix) * must be matched by a literal `/`, rather than by `*` or `?` or `[...]` */ - require_literal_separator: bool, + pub require_literal_separator: bool, /** * If this is true then paths that contain components that start with a `.` will @@ -615,7 +615,7 @@ pub struct MatchOptions { * will not match. This is useful because such files are conventionally considered * hidden on Unix systems and it might be desirable to skip them when listing files. */ - require_literal_leading_dot: bool + pub require_literal_leading_dot: bool } impl MatchOptions {