relay icon indicating copy to clipboard operation
relay copied to clipboard

Unify glob utilities

Open jjbayer opened this issue 2 years ago • 1 comments

Relay currently has three separate utility classes for glob matching:

module translation to regex regex caching capturing configurable multiple builder mode
relay_common::glob globset global x binary
relay_common::glob2 manual local (with LazyGlob) x utf8
relay_common::glob3 globset local x x utf8

Attempt to unify these.

jjbayer avatar Aug 25 '23 08:08 jjbayer

  • glob is only used for librelay which has been fully moved into the ffi crate.
  • glob3 is fully replaced with relay-pattern.
  • glob2 still needs work to implement separator matching.

Dav1dde avatar Oct 14 '24 06:10 Dav1dde