route-recognizer
route-recognizer copied to clipboard
Recognizes URL patterns with support for dynamic and wildcard segments
You can currently define duplicate named parameters in the route with the last one resolved being the end value. E.g. given the following: ```rust #[test] fn duplicate_key() { let mut...
When parsing a URL if the path contains a query string at the end e.g. ``/api/something?a=b&c=d`` given a rule of ``/api/:what`` the value of the query string ends up being...
I would like to know how to prevent replacing a route with other
For example, there are many Google APIs that use a colon in path to separate methods on a resource, for example https://ai.google.dev/api/all-methods If this already exists adding an example to...