routefinder

router

APACHE-2.0 License

Downloads
262.3K
Stars
12
Committers
2

Bot releases are hidden (Show)

routefinder - v0.5.3

Published by jbr over 1 year ago

What's Changed

Full Changelog: https://github.com/jbr/routefinder/compare/v0.5.2...v0.5.3

routefinder - v0.5.2

Published by jbr over 2 years ago

this release upgrades smartstring and smartcow to their latest versions

routefinder - v0.5.1

Published by jbr almost 3 years ago

this patch release adds a single method: Router::match_iter

routefinder -

Published by jbr almost 3 years ago

This release primarily impacts users of the Route struct, which no longer exists.

  • switches the iteration order so we don't have to call .rev() everywhere we iterate.
  • adds a few convenience functions onto Router (is_empty, len, iter, iter_mut)
  • implements IntoIterator for Router, &Router, &mut Router
  • removes Route and instead just uses RouteSpec directly
  • stores routes and handlers in a BtreeMap<RouteSpec, Handler> instead of a BtreeSet<Route<Handler>>
routefinder -

Published by jbr over 3 years ago

routefinder 0.3.1 adds an IntoIterator implementation for &Router