- Work around a rustdoc ICE (#24)
- Breaking changes:
- leapjoin now takes a tuple of leapers, and not a
&mut
slice:from_leapjoin(&input, &mut [&mut foo.extend_with(...), ..], ..)
becomesfrom_leapjoin(&input, (foo.extend_with(...), ..), ..)
- if there is only one leaper, no tuple is needed
Relation::from
now requires a vector, not an iterator; useRelation::from_iter
instead
- leapjoin now takes a tuple of leapers, and not a
- Changed the API to permit using
Relation
andVariable
more interchangeably, and added a number of operations to construct relations directly, likeRelation::from_join
- Extended leapfrog triejoin with new operations (
PrefixFilter
andValueFilter
)
- Added leapfrog triejoin (#11).
- Have badges and repo links now!
- Minor performance improvements (#13).
- Initial release.