Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement regex matching for request path segments #46

Merged
merged 2 commits into from
Sep 14, 2017
Merged

Implement regex matching for request path segments #46

merged 2 commits into from
Sep 14, 2017

Commits on Sep 9, 2017

  1. Implement regex matching for request path segments

    Adds anchored (^..$) regex matching to the request path segment handling
    and drops the `unimplemented!()` macro in favor of a concrete
    implementation.
    
    This also adds an `OrderedRegex` newtype as the exist Regex didn't
    implement the traits required for PartialEq, Eq, PartialOrd, and Ord.
    See the following Github issues for reasons why Regex doesn't natively
    implement this:
    rust-lang/regex#313
    rust-lang/regex#364
    
    This (hopefully) addresses and closes #10.
    ELD committed Sep 9, 2017
    Configuration menu
    Copy the full SHA
    b06e64d View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2017

  1. Configuration menu
    Copy the full SHA
    8be11a6 View commit details
    Browse the repository at this point in the history