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

Fix dependencies and update to Rust2021 #118

Closed
wants to merge 232 commits into from
Closed

Commits on Nov 28, 2014

  1. Configuration menu
    Copy the full SHA
    493b34a View commit details
    Browse the repository at this point in the history
  2. Find limits of a set of points

    This implements a utility function to determine the geometrical extents of a
    set of points.
    milibopp committed Nov 28, 2014
    Configuration menu
    Copy the full SHA
    73bb287 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2014

  1. Construct simple dimension-generic tree

    So far this really only covers insertion.
    milibopp committed Nov 29, 2014
    Configuration menu
    Copy the full SHA
    5d45c88 View commit details
    Browse the repository at this point in the history
  2. Abstract node entries as positionable entities

    Entry impls Positionable, but any user-defined type may do so as well.
    milibopp committed Nov 29, 2014
    Configuration menu
    Copy the full SHA
    073aa18 View commit details
    Browse the repository at this point in the history
  3. Clean up privacy of items

    Many items in the tree module are mere implementation details and do not need
    to be exposed publicly.
    milibopp committed Nov 29, 2014
    Configuration menu
    Copy the full SHA
    a64e7df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0c25327 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2014

  1. Add associated data

    A separate structure can be constructed from the tree to associate arbitrary
    data from a closure to each node. On this structure one can then execute
    computational queries.
    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    aa4e0b1 View commit details
    Browse the repository at this point in the history
  2. Add some benchmarks

    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    8f6eee3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2d1bfb View commit details
    Browse the repository at this point in the history
  4. Benchmark raw tree construction

    Also it is no longer unsafe as this is not quite the right use case for that
    keyword.
    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    1876e69 View commit details
    Browse the repository at this point in the history
  5. Benchmark data association

    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    02c9374 View commit details
    Browse the repository at this point in the history
  6. Add readme

    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    9571197 View commit details
    Browse the repository at this point in the history
  7. Add GPLv3 as license

    milibopp committed Dec 2, 2014
    Configuration menu
    Copy the full SHA
    1ff406a View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2014

  1. Simplify implementation of tree computation

    This slightly changes the semantics, but no test was looking into this
    peculiarity so it's okay to remove it.
    milibopp committed Dec 3, 2014
    Configuration menu
    Copy the full SHA
    04e7d4a View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2014

  1. Design a common interface for trees

    There are two traits: Tree defines tree construction alone, whereas TreeWalk
    wraps up computational queries on the trees.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    96700f4 View commit details
    Browse the repository at this point in the history
  2. Change nodes to store their width

    This is arguably the more useful quantity than the extent (i.e. the
    half-width).
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    221e333 View commit details
    Browse the repository at this point in the history
  3. Start unifying NodeWithData and Node

    The construction routines of Node have been integrated into NodeWithData to
    form a new type NTree. The construction benchmarks have been adapted. The query
    functionality does not work yet.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    a04d6b9 View commit details
    Browse the repository at this point in the history
  4. Implement and adapt TreeWalk for NTree

    All tests have been reinstated and run successfully.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    eda5cea View commit details
    Browse the repository at this point in the history
  5. Merge pull request milibopp#5 from aepsil0n/tree_interface

    Tree interface
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    dc74ec3 View commit details
    Browse the repository at this point in the history
  6. Reorganize tree traits

    The operational behaviour of a tree is defined by what was TreeWalk before.
    Hence, TreeWalk has been renamed to Tree. The former Tree trait was removed on
    the other hand, as the constructors it defines do not hold generally. One may
    for example write a tree without associated data (such as the current Node) and
    still implement Tree<P, N, O, ()> for it.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    b88656a View commit details
    Browse the repository at this point in the history
  7. Add new traits Node and AssociatedData for trees

    Every tree should at least provide information about its structure and
    geometry, so that one can write generic algorithms that directly work with the
    structure outside the tree implementation.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    45b5ac4 View commit details
    Browse the repository at this point in the history
  8. Split Tree trait into DataQuery and ObjectQuery

    This separates these concerns and leads to a cleaner interface. For convenience
    and clear semantics two new trivial wrapper traits `Tree` and `PureTree` have
    been added to comprise the functionality that makes up trees with and without
    associated data.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    43bf5b0 View commit details
    Browse the repository at this point in the history
  9. Change PureNTree so that it impls PureTree

    This also allows to benchmark `PureNTree` versus `NTree`.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    924ce54 View commit details
    Browse the repository at this point in the history
  10. Restructure file hierarchy

    Common tree abstractions now live in the `tree` module, the
    dimension-unspecific implementations in `ntree` and `util` now also contains
    `Positionable` and `Entry` as they fit nowhere else (although they might
    warrant another module at some point.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    9fb3f2b View commit details
    Browse the repository at this point in the history
  11. Further simplify query traits

    It is not necessary to deal with the accumulation of values in the query
    implementations. It is simpler to pass some callback that handles state changes
    by closing over its environment.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    0027404 View commit details
    Browse the repository at this point in the history
  12. Merge pull request milibopp#6 from aepsil0n/trait_reform

    Restructure traits
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    6c666bb View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    de71fc5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    d7f9119 View commit details
    Browse the repository at this point in the history
  15. Merge pull request milibopp#9 from aepsil0n/docs

    Update documentation
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    c7eda2d View commit details
    Browse the repository at this point in the history
  16. Integrate with Travis CI

    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    cb38333 View commit details
    Browse the repository at this point in the history
  17. Merge pull request milibopp#10 from aepsil0n/travis_ci

    Integrate with Travis CI
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    1a9577e View commit details
    Browse the repository at this point in the history
  18. Integrate with Rust CI

    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    947d4e1 View commit details
    Browse the repository at this point in the history
  19. Add gravity calculation as an example

    There is both a compilable Cargo project and a short excerpt in the readme for
    demonstrative purposes.
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    f1a4487 View commit details
    Browse the repository at this point in the history
  20. Merge pull request milibopp#12 from aepsil0n/gravity_example

    Add gravity calculation as an example
    milibopp committed Dec 4, 2014
    Configuration menu
    Copy the full SHA
    4f3dec7 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2014

  1. Abstract container in NodeState

    NodeState is not hard-coded to use a Vec any more. For generic programming we
    may want to impose trait bounds on the container in the future.
    
    Fixes milibopp#7.
    milibopp committed Dec 10, 2014
    Configuration menu
    Copy the full SHA
    e0216a9 View commit details
    Browse the repository at this point in the history
  2. Fix implicit cloning

    milibopp committed Dec 10, 2014
    Configuration menu
    Copy the full SHA
    8f76001 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2014

  1. Merge pull request milibopp#17 from aepsil0n/abstract_node_state

    Abstract container in NodeState
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    8680d50 View commit details
    Browse the repository at this point in the history
  2. Benchmark object query

    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    67ae6de View commit details
    Browse the repository at this point in the history
  3. Query and construct using unboxed closures

    These closures can be inlined and cause less indirection. This seems to speed
    up affected benchmarks by about a third, which is a decent improvement.
    
    Fixes milibopp#8.
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    88d5487 View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#18 from aepsil0n/unboxed_closures

    Unboxed closures
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    29fb875 View commit details
    Browse the repository at this point in the history
  5. Disable debug info to workaround compiler bug

    The bug is [1] and it ought to be fixed at some point.
    
    [1] rust-lang/rust#17257
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    d593292 View commit details
    Browse the repository at this point in the history
  6. Merge pull request milibopp#19 from aepsil0n/debug_workaround

    Disable debug info to workaround compiler bug
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    8bbafb8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    af14bc2 View commit details
    Browse the repository at this point in the history
  8. Merge pull request milibopp#21 from aepsil0n/readme_travis_status

    Include build status in readme
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    56bdd43 View commit details
    Browse the repository at this point in the history
  9. Fix Travis CI setup

    The script was indented too much.
    milibopp committed Dec 11, 2014
    Configuration menu
    Copy the full SHA
    0dead1e View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2014

  1. Merge pull request milibopp#20 from aepsil0n/travis_fix

    Fix Travis CI setup
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    bd2468e View commit details
    Browse the repository at this point in the history
  2. Reduce quickcheck to a dev-dependency

    Users of acacia should not need to be aware of its testing infrastructure and
    currently acacia does not implement quickcheck traits to export.
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    bddea6a View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#22 from aepsil0n/quickcheck_as_devdependency

    Reduce quickcheck to a dev-dependency
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    fd197e9 View commit details
    Browse the repository at this point in the history
  4. Move objects to be stored in trees out of util

    They are fundamental parts of the generic tree infrastructure, and the
    implementations depend on `Positionable`. `Entry` was renamed to `Positioned`
    to make its purpose clearer. Furthermore, the documentation of these types is
    now complete.
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    5519523 View commit details
    Browse the repository at this point in the history
  5. Warn about missing docs everywhere

    This makes sense now to prevent regressions as the util module is also fully
    documented after moving out undocumented items.
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    d1f8fad View commit details
    Browse the repository at this point in the history
  6. Implement Positionable for references

    This is useful if one wants to use the tree as a view performing computations
    on separate data structures.
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    32ff5fb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4203ebf View commit details
    Browse the repository at this point in the history
  8. Merge pull request milibopp#23 from aepsil0n/positionable_restructure

    Restructure the Positionable trait
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    afd00c2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9480436 View commit details
    Browse the repository at this point in the history
  10. Merge pull request milibopp#24 from aepsil0n/readme_unboxed_closures

    Use unboxed closures in readme
    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    c990ee1 View commit details
    Browse the repository at this point in the history
  11. Refactor missing_docs lint

    milibopp committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    a10ec09 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2015

  1. Configuration menu
    Copy the full SHA
    c3fbc71 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#25 from aepsil0n/update_nightlies

    Update to latest Rust nightlies
    milibopp committed Jan 7, 2015
    Configuration menu
    Copy the full SHA
    8ca1540 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2015

  1. Configuration menu
    Copy the full SHA
    45e52f0 View commit details
    Browse the repository at this point in the history
  2. Move to associated types at large

    The trait infrastructure now avoids parametrization over type parameters,
    favouring associated types instead. To reuse associated type specifications,
    ObjectQuery inherits Node and DataQuery inherits AssociatedData. Also note that
    the Tree/PureTree traits have been removed, as they are fairly superfluous
    given this new trait hierarchy.
    
    This precludes some hypothetical use cases such as having a single tree
    structure that can be viewed trivially as a tree in multiple senses. As it is
    possible to create newtypes for such applications, the ergonomic benefits of
    not having to deal with an explosion of type parameters outweigh this.
    
    Fixes milibopp#16.
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    9ce3202 View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#28 from aepsil0n/associated_types

    Associated types
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    873c13a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3af4e4b View commit details
    Browse the repository at this point in the history
  5. Merge pull request milibopp#30 from aepsil0n/examples_fix_and_ci

    Fix and continuously integrate gravity example
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    3fa23e4 View commit details
    Browse the repository at this point in the history
  6. Extract gravity tests from library

    The gravity test cases are fairly involved integration tests. Therefore they
    were moved out of tree as integration tests. This keeps the code base a bit
    more organized.
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    689c9a0 View commit details
    Browse the repository at this point in the history
  7. Merge pull request milibopp#31 from aepsil0n/extract_gravity_tests

    Extract gravity tests from library
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    aa31916 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    82a5ae3 View commit details
    Browse the repository at this point in the history
  9. Make interval more generic

    Now it can harbour any type implementing some notion of order and a mid point.
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    60877e5 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c5aa846 View commit details
    Browse the repository at this point in the history
  11. Implement a 3D box partitioning scheme

    This is abstracted over its dimension using macros now.
    milibopp committed Jan 8, 2015
    Configuration menu
    Copy the full SHA
    6bb4d15 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2015

  1. Use partition abstraction throughout the library

    The tree implementations have been stripped completely of their specialized
    geometry code. The trait infrastructure now also refers to partitions instead
    of a node center and width.
    
    Consequentially the util module was removed, as its functionality was no longer
    relevant. Note though, that as a replacement new functions are required to
    compute a partition that encompasses a set of positions.
    
    The test suite is currently does not work, as the relevant partitioning schemes
    have to be reimplemented.
    milibopp committed Jan 9, 2015
    Configuration menu
    Copy the full SHA
    0bfbb23 View commit details
    Browse the repository at this point in the history
  2. Split partitioning logic into multiple modules

    The items are reexported to retain the apparent structure.
    milibopp committed Jan 9, 2015
    Configuration menu
    Copy the full SHA
    c7b2e06 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d508f7e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e8da00 View commit details
    Browse the repository at this point in the history
  5. Make N-cube attributes private

    They are exposed as getters now and the constructor ensures a positive,
    non-zero width.
    milibopp committed Jan 9, 2015
    Configuration menu
    Copy the full SHA
    3acef25 View commit details
    Browse the repository at this point in the history
  6. Refactor branch dispatch mechanism

    Dispatch is now a partition method with a (slow) default implementation. The
    benchmarks have slightly improved, as a custom implementation of this dispatch
    mechanism avoids having to iterate over all subpartitions.
    milibopp committed Jan 9, 2015
    Configuration menu
    Copy the full SHA
    6ec9947 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2015

  1. Configuration menu
    Copy the full SHA
    d2f266f View commit details
    Browse the repository at this point in the history
  2. Check consistency of partition dispatch

    To make this ergonomic, there is now a macro to generate the code that tests
    the proposition that some type implements Partition correctly.
    milibopp committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    8c9d60c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    60fdd94 View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#32 from aepsil0n/abstract_partition

    Abstraction of partitioning logic
    milibopp committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    1e775a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c5f00ec View commit details
    Browse the repository at this point in the history
  6. Merge pull request milibopp#36 from aepsil0n/arbitrary_feature

    Export Arbitrary impls as optional feature
    milibopp committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    84e0e38 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    94a8875 View commit details
    Browse the repository at this point in the history
  8. Merge pull request milibopp#37 from aepsil0n/rust-nightly

    Transition to Rust-1.0.0 alpha
    milibopp committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    7ffaf11 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2015

  1. Configuration menu
    Copy the full SHA
    bec1c63 View commit details
    Browse the repository at this point in the history
  2. Update readme to new API

    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    fb7ab3f View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#39 from aepsil0n/update-readme

    Update readme to new API
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    efb642e View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#38 from aepsil0n/cargo-metadata

    Complete package metadata in Cargo.toml
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    c15f9db View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    45b99d2 View commit details
    Browse the repository at this point in the history
  6. Partition proposition macro generates submodule

    This helps to distinguish, by which proposition check a test failure was
    caused, while not having to split this in separate macros. The downside of
    this change are the public reexports required by the macro system.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    8bee1c9 View commit details
    Browse the repository at this point in the history
  7. Implement a partition of the unit quad

    The implementation uses integer indices to store its geometry. This uses
    minimal memory overhead, but it is less flexible than a corresponding `Ncube`.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    d180e50 View commit details
    Browse the repository at this point in the history
  8. Split partition's totality proposition

    Quickcheck is better at finding bad cases if irrelevant input is discarded. The
    propositions now have an explicit dependency on quickcheck.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    43d88e5 View commit details
    Browse the repository at this point in the history
  9. Split subdivision off as its own trait

    Method dispatch gets more complicated for types that partition more than one
    domain.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    3277935 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c56e837 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3baa406 View commit details
    Browse the repository at this point in the history
  12. Work around strange trait privacy bug

    There is a fat descriptive FIXME note in the source:
    
        Somehow this explicit usage of the `Rng` trait is required for
        the `.gen_range` calls, even though `Rng: Gen`. The compiler
        complains that the "source trait is private". Curiously, adding this
        import here fixes the same situation in the `cubemap` module as well.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    3216f47 View commit details
    Browse the repository at this point in the history
  13. Increase tolerance of gravity tests to 10 %

    It did fail a couple of times during a more extended debugging session, so I
    chose to increase the error tolerance a little.
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    01934dd View commit details
    Browse the repository at this point in the history
  14. Merge pull request milibopp#40 from aepsil0n/more-partitions

    Implement more partitions and improve partition system
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    db9e2b9 View commit details
    Browse the repository at this point in the history
  15. Merge pull request milibopp#41 from aepsil0n/inc-gravtest-tolerance

    Increase tolerance of gravity tests to 10 %
    milibopp committed Jan 11, 2015
    Configuration menu
    Copy the full SHA
    e6bec4b View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2015

  1. Expose geometry of UnitQuad and cubemap types

    Also they were not public before.
    milibopp committed Jan 12, 2015
    Configuration menu
    Copy the full SHA
    c15ec83 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#43 from aepsil0n/quad-attributes

    Expose geometry of UnitQuad and cubemap types
    milibopp committed Jan 12, 2015
    Configuration menu
    Copy the full SHA
    74edabc View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2015

  1. Configuration menu
    Copy the full SHA
    723b1fd View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#45 from aepsil0n/derive_traits_partition

    Derive PartialEq, Eq and Hash for some partitions
    milibopp committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    ed8d9cd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b24bc3 View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#46 from aepsil0n/cubemap-quad-geometry

    Add some functions for cubemap geometry
    milibopp committed Jan 13, 2015
    Configuration menu
    Copy the full SHA
    32a630e View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2015

  1. Update Rust CI API token

    milibopp committed Jan 17, 2015
    Configuration menu
    Copy the full SHA
    eb7bb66 View commit details
    Browse the repository at this point in the history
  2. Include docs in build

    milibopp committed Jan 17, 2015
    Configuration menu
    Copy the full SHA
    da6bd55 View commit details
    Browse the repository at this point in the history
  3. Use tuples for unit quad

    Fixed-size arrays no longer implement Hash, so UnitQuad has to use a tuple to
    store its offset. For sake of consistency, coordinates are now also handled as
    a tuple.
    milibopp committed Jan 17, 2015
    Configuration menu
    Copy the full SHA
    ff3953d View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2015

  1. Fix optionality of QuickCheck dependency

    QuickCheck is mandatory for testing, but optional for users of the library.
    This is now reflected correctly in the manifest.
    milibopp committed Jan 19, 2015
    Configuration menu
    Copy the full SHA
    ecbbad8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#47 from aepsil0n/fix-unitquad

    Use tuples for unit quad
    milibopp committed Jan 19, 2015
    Configuration menu
    Copy the full SHA
    935fd22 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2015

  1. Configuration menu
    Copy the full SHA
    22ddd26 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#48 from aepsil0n/fix-nightly

    Fix type inference on latest nightly
    milibopp committed Jan 24, 2015
    Configuration menu
    Copy the full SHA
    ca7f618 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2015

  1. Release version 0.0.2

    All dependencies are now on crates.io. A couple of new features and
    backwards-incompatible changes have been done since the last release.
    milibopp committed Jan 25, 2015
    Configuration menu
    Copy the full SHA
    0de4c75 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    52b4b10 View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#49 from aepsil0n/example-dir

    Restructure examples directory
    milibopp committed Jan 25, 2015
    Configuration menu
    Copy the full SHA
    f32adb2 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2015

  1. Explicitly use unstable features

    The currently still unstable features core and hash are used in the crate. The
    `Show` trait has been renamed to `Debug` in the standard library.
    milibopp committed Feb 1, 2015
    Configuration menu
    Copy the full SHA
    276e703 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#50 from aepsil0n/unstable-features

    Explicitly use unstable features
    milibopp committed Feb 1, 2015
    Configuration menu
    Copy the full SHA
    66d9d08 View commit details
    Browse the repository at this point in the history
  3. Fix more stability warnings

    The example and integration tests had not been updated.
    milibopp committed Feb 1, 2015
    Configuration menu
    Copy the full SHA
    e6ab65b View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#51 from aepsil0n/unstable-example-tests

    Fix more stability warnings
    milibopp committed Feb 1, 2015
    Configuration menu
    Copy the full SHA
    8d80523 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2015

  1. Correct a sign error

    Add a test to prevent regressions. This ought to be tested somewhat more
    thoroughly nonetheless.
    milibopp committed Feb 2, 2015
    Configuration menu
    Copy the full SHA
    4bf97cc View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#52 from aepsil0n/sign-error

    Correct a sign error
    milibopp committed Feb 2, 2015
    Configuration menu
    Copy the full SHA
    f0e6426 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2015

  1. Update to latest nightly

    for-loops now consume iterators.
    milibopp committed Feb 3, 2015
    Configuration menu
    Copy the full SHA
    e6267ec View commit details
    Browse the repository at this point in the history
  2. Restructure public item hierarchy

    Resolves milibopp#44.
    milibopp committed Feb 3, 2015
    Configuration menu
    Copy the full SHA
    8c6a897 View commit details
    Browse the repository at this point in the history
  3. Change semantics of Node trait

    The new design is somewhat more flexible as to how trees are implemented.
    However, the current implementations only work properly with clonable
    partitions (which is normally true for a partition though).
    
    Fixes milibopp#26.
    milibopp committed Feb 3, 2015
    Configuration menu
    Copy the full SHA
    4223014 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2015

  1. Implement an iterator over objects in a tree

    The iterator traverses the entire tree node by node.
    milibopp committed Feb 4, 2015
    Configuration menu
    Copy the full SHA
    417013b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    50634d6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8815f97 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2015

  1. Adapt to latest Rust

    milibopp committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    6f7aeca View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#57 from aepsil0n/iterator-design

    Implement tree iterators including queries
    milibopp committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    bd01078 View commit details
    Browse the repository at this point in the history
  3. Release version 0.0.3

    milibopp committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    6d29840 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2015

  1. Add Item type to IntoIterator impls

    Adapts to upstream changes in the stdlib.
    milibopp committed Feb 20, 2015
    Configuration menu
    Copy the full SHA
    ef23205 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2015

  1. Get rid of [] syntax

    milibopp committed Feb 22, 2015
    Configuration menu
    Copy the full SHA
    a5e3817 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2015

  1. Fix more compiler changes

    milibopp committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    2a65cf5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#58 from aepsil0n/fix-intoiterator

    Add Item type to IntoIterator impls
    milibopp committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    4add571 View commit details
    Browse the repository at this point in the history
  3. Release version 0.0.4

    milibopp committed Mar 5, 2015
    Configuration menu
    Copy the full SHA
    df5aba4 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2015

  1. Configuration menu
    Copy the full SHA
    c991c48 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#59 from aepsil0n/fix-range

    Replace last occurence of range(…) function
    milibopp committed Mar 24, 2015
    Configuration menu
    Copy the full SHA
    c9f9c7f View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2015

  1. Configuration menu
    Copy the full SHA
    fca6ef9 View commit details
    Browse the repository at this point in the history
  2. Resolve type ambiguity

    milibopp committed Mar 27, 2015
    Configuration menu
    Copy the full SHA
    4beda54 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2015

  1. Merge pull request milibopp#60 from aepsil0n/feature-update

    Handle optional stdlib features properly
    milibopp committed Mar 29, 2015
    Configuration menu
    Copy the full SHA
    119d05a View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2015

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

Commits on Apr 7, 2015

  1. Configuration menu
    Copy the full SHA
    b73bf6e View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#61 from aepsil0n/no-slice-patterns

    Stop using experimental slice_patterns
    milibopp committed Apr 7, 2015
    Configuration menu
    Copy the full SHA
    a4ab0a9 View commit details
    Browse the repository at this point in the history
  3. Avoid using the core feature

    Instead the `num` crate is pulled in as a new dependency.
    milibopp committed Apr 7, 2015
    Configuration menu
    Copy the full SHA
    8f8c0ea View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#62 from aepsil0n/no-core-feature

    Avoid using the core feature
    milibopp committed Apr 7, 2015
    Configuration menu
    Copy the full SHA
    3bcf6d7 View commit details
    Browse the repository at this point in the history
  5. Release version 0.0.5

    milibopp committed Apr 7, 2015
    Configuration menu
    Copy the full SHA
    8eb68f6 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2015

  1. Update readme badges

    Use shields.io badges to make it look nicer.
    milibopp committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    3cbcf7e View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#63 from aepsil0n/readme-update

    Update readme badges
    milibopp committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    e910e92 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2015

  1. Stabilize for beta

    Fix for upstream breaking change in nalgebra. Also depend on precise versions
    of the dependencies.
    milibopp committed Apr 28, 2015
    Configuration menu
    Copy the full SHA
    91d3be7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#64 from aepsil0n/stabilize

    Stabilize for beta
    milibopp committed Apr 28, 2015
    Configuration menu
    Copy the full SHA
    6bd0fe1 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2015

  1. Release version 0.0.6

    milibopp committed May 29, 2015
    Configuration menu
    Copy the full SHA
    49f0e28 View commit details
    Browse the repository at this point in the history

Commits on May 30, 2015

  1. Test with Rust nightly

    The test suite uses the unstable testing feature for benchmarks.
    milibopp committed May 30, 2015
    Configuration menu
    Copy the full SHA
    2a270d7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#65 from aepsil0n/test-nightly

    Test with Rust nightly
    milibopp committed May 30, 2015
    Configuration menu
    Copy the full SHA
    cb7a45d View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2015

  1. Use own implementation to find NCube size in the gravity test, as par…

    …tial_max was deprecated.
    Moredread committed Sep 8, 2015
    Configuration menu
    Copy the full SHA
    f4b0094 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2015

  1. Merge pull request milibopp#68 from Moredread/fix/partial_cmp

    Use own implementation to find NCube size in the gravity test, as partial_max was deprecated.
    milibopp committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    c52cf5a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e98358 View commit details
    Browse the repository at this point in the history
  3. Also test on OSX.

    Moredread committed Sep 9, 2015
    Configuration menu
    Copy the full SHA
    665abc3 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2015

  1. Merge pull request milibopp#70 from Moredread/impr/travis

    Travis improvements
    milibopp committed Sep 10, 2015
    Configuration menu
    Copy the full SHA
    78e7d09 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2015

  1. Use newer version of nalgebra

    Eduard Bopp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    e1cd15c View commit details
    Browse the repository at this point in the history
  2. Do not use superfluous feature "core"

    Eduard Bopp committed Oct 7, 2015
    Configuration menu
    Copy the full SHA
    38b0176 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2015

  1. Merge pull request milibopp#76 from aepsil0n/fix-build

    Upgrade to new nalgebra version
    milibopp committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    a5780aa View commit details
    Browse the repository at this point in the history
  2. Conform with RFC 1214

    Traits must be explicit marked as `Sized` if this is required.
    
    Fixes milibopp#71.
    Eduard Bopp committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    68564bd View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#77 from aepsil0n/rfc-1214-accordance

    Conform with RFC 1214
    milibopp committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    d2cb9a6 View commit details
    Browse the repository at this point in the history
  4. Switch to travis-cargo for CI scripting

    Eduard Bopp committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    0d1fb20 View commit details
    Browse the repository at this point in the history
  5. Ignore Mac OS X

    Inconsistent tooling. Not a worthwhile CI environment anyway.
    Eduard Bopp committed Oct 12, 2015
    Configuration menu
    Copy the full SHA
    379d4aa View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2015

  1. Merge pull request milibopp#78 from aepsil0n/travis-cargo

    Switch to travis-cargo for CI scripting
    milibopp committed Oct 14, 2015
    Configuration menu
    Copy the full SHA
    77d2ac7 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2016

  1. Configuration menu
    Copy the full SHA
    99e0ef4 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#79 from Moredread/quickcheck-version

    Fix quickcheck version
    milibopp committed Apr 7, 2016
    Configuration menu
    Copy the full SHA
    3017093 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2016

  1. Bump dependencies

    Moredread committed Aug 28, 2016
    Configuration menu
    Copy the full SHA
    897a660 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2016

  1. Merge pull request milibopp#80 from Moredread/master

    Bump dependencies
    milibopp authored Sep 2, 2016
    Configuration menu
    Copy the full SHA
    30a3103 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2016

  1. Configuration menu
    Copy the full SHA
    abcf8b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aa7a986 View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#82 from Moredread/patch-1

    Use travis-cargo < 0.2 as they follow semver
    milibopp authored Sep 15, 2016
    Configuration menu
    Copy the full SHA
    937dfe2 View commit details
    Browse the repository at this point in the history
  4. Upgrade nalgebra to 0.10

    Eduard Bopp committed Sep 15, 2016
    Configuration menu
    Copy the full SHA
    0353f77 View commit details
    Browse the repository at this point in the history
  5. Merge pull request milibopp#87 from aepsil0n/bump-nalgebra

    Upgrade nalgebra to 0.10
    milibopp authored Sep 15, 2016
    Configuration menu
    Copy the full SHA
    354fe03 View commit details
    Browse the repository at this point in the history
  6. Merge pull request milibopp#84 from Moredread/patch-3

    Fix spelling mistake introduced in last commit
    milibopp authored Sep 15, 2016
    Configuration menu
    Copy the full SHA
    597f23d View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2016

  1. Bump version to 0.1.0

    Moredread committed Sep 16, 2016
    Configuration menu
    Copy the full SHA
    517771d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c9f20c7 View commit details
    Browse the repository at this point in the history
  3. Change license to MPL 2.0

    Moredread committed Sep 16, 2016
    Configuration menu
    Copy the full SHA
    2188547 View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#91 from Moredread/mpl

    Change license to MPL 2.0
    milibopp authored Sep 16, 2016
    Configuration menu
    Copy the full SHA
    7a47ac2 View commit details
    Browse the repository at this point in the history
  5. Merge pull request milibopp#89 from Moredread/check_domain

    Check if object is in domain of tree when creating the tree
    milibopp authored Sep 16, 2016
    Configuration menu
    Copy the full SHA
    c594be4 View commit details
    Browse the repository at this point in the history
  6. Merge pull request milibopp#90 from Moredread/bump_to_0_1_0

    Bump version to 0.1.0
    milibopp authored Sep 16, 2016
    Configuration menu
    Copy the full SHA
    e1c518f View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2017

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

Commits on Jan 13, 2017

  1. Merge pull request milibopp#93 from Moredread/bump

    Bump dependency itertools to 0.5 and version to 0.1.1
    milibopp authored Jan 13, 2017
    Configuration menu
    Copy the full SHA
    6b174c9 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2017

  1. Bump version to 0.1.2

    Moredread committed Jan 15, 2017
    Configuration menu
    Copy the full SHA
    31f27e7 View commit details
    Browse the repository at this point in the history
  2. Avoid Vec indexing in tests

    Moredread committed Jan 15, 2017
    Configuration menu
    Copy the full SHA
    efa12ec View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2017

  1. Change documentation link to docs.rs

    rust-ci.org is no longer registered, so the previous docs link was redirecting to a spam site :-/
    carols10cents authored Feb 26, 2017
    Configuration menu
    Copy the full SHA
    2f46bc1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#94 from carols10cents/patch-1

    Change documentation link to docs.rs
    Moredread authored Feb 26, 2017
    Configuration menu
    Copy the full SHA
    486c9ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0f334c8 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2017

  1. Configuration menu
    Copy the full SHA
    561136b View commit details
    Browse the repository at this point in the history
  2. Fix broken link

    *ahem* I should copy & paste that naively…
    milibopp committed Sep 22, 2017
    Configuration menu
    Copy the full SHA
    cbed88c View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2020

  1. Update itertools requirement from 0.5 to 0.9

    Updates the requirements on [itertools](https://github.com/bluss/rust-itertools) to permit the latest version.
    - [Release notes](https://github.com/bluss/rust-itertools/releases)
    - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
    - [Commits](rust-itertools/itertools@0.5.7...v0.9.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Jun 10, 2020
    Configuration menu
    Copy the full SHA
    0c6870f View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2020

  1. Update num requirement from 0.1 to 0.3

    Updates the requirements on [num](https://github.com/rust-num/num) to permit the latest version.
    - [Release notes](https://github.com/rust-num/num/releases)
    - [Changelog](https://github.com/rust-num/num/blob/master/RELEASES.md)
    - [Commits](rust-num/num@num-0.1.28...num-0.3.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Jun 15, 2020
    Configuration menu
    Copy the full SHA
    93f519a View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2020

  1. Merge pull request milibopp#100 from edibopp/dependabot/cargo/num-0.3

    Update num requirement from 0.1 to 0.3
    milibopp authored Jul 3, 2020
    Configuration menu
    Copy the full SHA
    46a41aa View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#97 from edibopp/dependabot/cargo/itertool…

    …s-0.9
    
    Update itertools requirement from 0.5 to 0.9
    milibopp authored Jul 3, 2020
    Configuration menu
    Copy the full SHA
    6f074fe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    061bca0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    955f17b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    02cfe7e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ae7112b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d8aef3a View commit details
    Browse the repository at this point in the history
  8. Remove travis-cargo

    milibopp committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    bab257e View commit details
    Browse the repository at this point in the history
  9. Update all the libraries

    nalgebra: 0.10 → 0.21
    rand: 0.3 → 0.7
    num: 0.3 → num_traits: 0.2
    quickcheck: 0.2 → 0.9
    milibopp committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    21c2449 View commit details
    Browse the repository at this point in the history
  10. Do not mention non-feature

    milibopp committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    851c5c3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    eb2a9c8 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ba5df99 View commit details
    Browse the repository at this point in the history
  13. Release version 0.2.0

    milibopp committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    94c1e4e View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2020

  1. Update nalgebra requirement from 0.21 to 0.22

    Updates the requirements on [nalgebra](https://github.com/rustsim/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/rustsim/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.21.0...v0.22.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    ef17d8b View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#102 from edibopp/dependabot/cargo/nalgebr…

    …a-0.22
    
    Update nalgebra requirement from 0.21 to 0.22
    milibopp authored Aug 26, 2020
    Configuration menu
    Copy the full SHA
    365685c View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2020

  1. Update approx requirement from 0.3 to 0.4

    Updates the requirements on [approx](https://github.com/brendanzab/approx) to permit the latest version.
    - [Release notes](https://github.com/brendanzab/approx/releases)
    - [Commits](https://github.com/brendanzab/approx/commits)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Oct 26, 2020
    Configuration menu
    Copy the full SHA
    8c98ab9 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2020

  1. Update nalgebra requirement from 0.22 to 0.23

    Updates the requirements on [nalgebra](https://github.com/rustsim/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/rustsim/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.22.0...v0.23.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Oct 27, 2020
    Configuration menu
    Copy the full SHA
    045a8af View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2020

  1. Merge pull request milibopp#103 from edibopp/dependabot/cargo/approx-0.4

    Update approx requirement from 0.3 to 0.4
    milibopp authored Dec 10, 2020
    Configuration menu
    Copy the full SHA
    8367c33 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#104 from edibopp/dependabot/cargo/nalgebr…

    …a-0.23
    
    Update nalgebra requirement from 0.22 to 0.23
    milibopp authored Dec 10, 2020
    Configuration menu
    Copy the full SHA
    dfe1fc9 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2020

  1. Update rand requirement from 0.7 to 0.8

    Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version.
    - [Release notes](https://github.com/rust-random/rand/releases)
    - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
    - [Commits](rust-random/rand@0.7.0...0.8.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Dec 21, 2020
    Configuration menu
    Copy the full SHA
    547f4af View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#105 from edibopp/dependabot/cargo/rand-0.8

    Update rand requirement from 0.7 to 0.8
    milibopp authored Dec 21, 2020
    Configuration menu
    Copy the full SHA
    a9da4a3 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2020

  1. Update itertools requirement from 0.9 to 0.10

    Updates the requirements on [itertools](https://github.com/bluss/rust-itertools) to permit the latest version.
    - [Release notes](https://github.com/bluss/rust-itertools/releases)
    - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
    - [Commits](rust-itertools/itertools@v0.9.0...v0.10.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Dec 28, 2020
    Configuration menu
    Copy the full SHA
    f688714 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2020

  1. Update nalgebra requirement from 0.23 to 0.24

    Updates the requirements on [nalgebra](https://github.com/rustsim/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/rustsim/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.23.0...v0.24.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Dec 31, 2020
    Configuration menu
    Copy the full SHA
    0c59746 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2021

  1. Merge pull request milibopp#107 from edibopp/dependabot/cargo/nalgebr…

    …a-0.24
    
    Update nalgebra requirement from 0.23 to 0.24
    milibopp authored Jan 4, 2021
    Configuration menu
    Copy the full SHA
    206a7fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e46222 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Update quickcheck requirement from 0.9 to 1.0

    Updates the requirements on [quickcheck](https://github.com/BurntSushi/quickcheck) to permit the latest version.
    - [Release notes](https://github.com/BurntSushi/quickcheck/releases)
    - [Commits](BurntSushi/quickcheck@quickcheck_macros-0.9.0...1.0.1)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Jan 11, 2021
    Configuration menu
    Copy the full SHA
    e023dac View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2021

  1. Merge pull request milibopp#108 from edibopp/dependabot/cargo/quickch…

    …eck-1.0
    
    Update quickcheck requirement from 0.9 to 1.0
    milibopp authored Jan 14, 2021
    Configuration menu
    Copy the full SHA
    0a6e3e4 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2021

  1. Update nalgebra requirement from 0.24 to 0.25

    Updates the requirements on [nalgebra](https://github.com/dimforge/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/dimforge/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.24.0...v0.25.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Mar 2, 2021
    Configuration menu
    Copy the full SHA
    1454567 View commit details
    Browse the repository at this point in the history
  2. Merge pull request milibopp#109 from edibopp/dependabot/cargo/nalgebr…

    …a-0.25
    
    Update nalgebra requirement from 0.24 to 0.25
    milibopp authored Mar 2, 2021
    Configuration menu
    Copy the full SHA
    ea1bd7b View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2021

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

Commits on Jun 3, 2021

  1. Update approx requirement from 0.4 to 0.5

    Updates the requirements on [approx](https://github.com/brendanzab/approx) to permit the latest version.
    - [Release notes](https://github.com/brendanzab/approx/releases)
    - [Commits](brendanzab/approx@v0.4.0...v0.5.0)
    
    Signed-off-by: dependabot-preview[bot] <[email protected]>
    dependabot-preview[bot] authored Jun 3, 2021
    Configuration menu
    Copy the full SHA
    8d7eeb4 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2021

  1. Merge pull request milibopp#113 from edibopp/dependabot/cargo/approx-0.5

    Update approx requirement from 0.4 to 0.5
    milibopp authored Jun 16, 2021
    Configuration menu
    Copy the full SHA
    de8a7ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c0fb146 View commit details
    Browse the repository at this point in the history
  3. Merge pull request milibopp#111 from edibopp/dependabot/add-v2-config…

    …-file
    
    Upgrade to GitHub-native Dependabot
    milibopp authored Jun 16, 2021
    Configuration menu
    Copy the full SHA
    70a1759 View commit details
    Browse the repository at this point in the history
  4. Merge pull request milibopp#106 from edibopp/dependabot/cargo/itertoo…

    …ls-0.10
    
    Update itertools requirement from 0.9 to 0.10
    milibopp authored Jun 16, 2021
    Configuration menu
    Copy the full SHA
    597708d View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2021

  1. Update nalgebra requirement from 0.25 to 0.28

    Updates the requirements on [nalgebra](https://github.com/dimforge/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/dimforge/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.25.0...v0.28.0)
    
    ---
    updated-dependencies:
    - dependency-name: nalgebra
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jul 12, 2021
    Configuration menu
    Copy the full SHA
    d1db553 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2021

  1. Merge pull request milibopp#115 from edibopp/dependabot/cargo/nalgebr…

    …a-0.28
    
    Update nalgebra requirement from 0.25 to 0.28
    milibopp authored Jul 22, 2021
    Configuration menu
    Copy the full SHA
    75e2f48 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2021

  1. Update nalgebra requirement from 0.28 to 0.29

    Updates the requirements on [nalgebra](https://github.com/dimforge/nalgebra) to permit the latest version.
    - [Release notes](https://github.com/dimforge/nalgebra/releases)
    - [Changelog](https://github.com/dimforge/nalgebra/blob/dev/CHANGELOG.md)
    - [Commits](dimforge/nalgebra@v0.28.0...v0.29.0)
    
    ---
    updated-dependencies:
    - dependency-name: nalgebra
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Aug 9, 2021
    Configuration menu
    Copy the full SHA
    7d627d4 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. Merge pull request milibopp#116 from edibopp/dependabot/cargo/nalgebr…

    …a-0.29
    
    Update nalgebra requirement from 0.28 to 0.29
    milibopp authored Aug 26, 2021
    Configuration menu
    Copy the full SHA
    ffd9bd9 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2021

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