-
Notifications
You must be signed in to change notification settings - Fork 8
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
Commits on Nov 28, 2014
-
Configuration menu - View commit details
-
Copy full SHA for 493b34a - Browse repository at this point
Copy the full SHA 493b34aView commit details -
Find limits of a set of points
This implements a utility function to determine the geometrical extents of a set of points.
Configuration menu - View commit details
-
Copy full SHA for 73bb287 - Browse repository at this point
Copy the full SHA 73bb287View commit details
Commits on Nov 29, 2014
-
Construct simple dimension-generic tree
So far this really only covers insertion.
Configuration menu - View commit details
-
Copy full SHA for 5d45c88 - Browse repository at this point
Copy the full SHA 5d45c88View commit details -
Abstract node entries as positionable entities
Entry impls Positionable, but any user-defined type may do so as well.
Configuration menu - View commit details
-
Copy full SHA for 073aa18 - Browse repository at this point
Copy the full SHA 073aa18View commit details -
Many items in the tree module are mere implementation details and do not need to be exposed publicly.
Configuration menu - View commit details
-
Copy full SHA for a64e7df - Browse repository at this point
Copy the full SHA a64e7dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c25327 - Browse repository at this point
Copy the full SHA 0c25327View commit details
Commits on Dec 2, 2014
-
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.
Configuration menu - View commit details
-
Copy full SHA for aa4e0b1 - Browse repository at this point
Copy the full SHA aa4e0b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f6eee3 - Browse repository at this point
Copy the full SHA 8f6eee3View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2d1bfb - Browse repository at this point
Copy the full SHA e2d1bfbView commit details -
Benchmark raw tree construction
Also it is no longer unsafe as this is not quite the right use case for that keyword.
Configuration menu - View commit details
-
Copy full SHA for 1876e69 - Browse repository at this point
Copy the full SHA 1876e69View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02c9374 - Browse repository at this point
Copy the full SHA 02c9374View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9571197 - Browse repository at this point
Copy the full SHA 9571197View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ff406a - Browse repository at this point
Copy the full SHA 1ff406aView commit details
Commits on Dec 3, 2014
-
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.
Configuration menu - View commit details
-
Copy full SHA for 04e7d4a - Browse repository at this point
Copy the full SHA 04e7d4aView commit details
Commits on Dec 4, 2014
-
Design a common interface for trees
There are two traits: Tree defines tree construction alone, whereas TreeWalk wraps up computational queries on the trees.
Configuration menu - View commit details
-
Copy full SHA for 96700f4 - Browse repository at this point
Copy the full SHA 96700f4View commit details -
Change nodes to store their width
This is arguably the more useful quantity than the extent (i.e. the half-width).
Configuration menu - View commit details
-
Copy full SHA for 221e333 - Browse repository at this point
Copy the full SHA 221e333View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for a04d6b9 - Browse repository at this point
Copy the full SHA a04d6b9View commit details -
Implement and adapt TreeWalk for NTree
All tests have been reinstated and run successfully.
Configuration menu - View commit details
-
Copy full SHA for eda5cea - Browse repository at this point
Copy the full SHA eda5ceaView commit details -
Merge pull request milibopp#5 from aepsil0n/tree_interface
Tree interface
Configuration menu - View commit details
-
Copy full SHA for dc74ec3 - Browse repository at this point
Copy the full SHA dc74ec3View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for b88656a - Browse repository at this point
Copy the full SHA b88656aView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 45b5ac4 - Browse repository at this point
Copy the full SHA 45b5ac4View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 43bf5b0 - Browse repository at this point
Copy the full SHA 43bf5b0View commit details -
Change PureNTree so that it impls PureTree
This also allows to benchmark `PureNTree` versus `NTree`.
Configuration menu - View commit details
-
Copy full SHA for 924ce54 - Browse repository at this point
Copy the full SHA 924ce54View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 9fb3f2b - Browse repository at this point
Copy the full SHA 9fb3f2bView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 0027404 - Browse repository at this point
Copy the full SHA 0027404View commit details -
Merge pull request milibopp#6 from aepsil0n/trait_reform
Restructure traits
Configuration menu - View commit details
-
Copy full SHA for 6c666bb - Browse repository at this point
Copy the full SHA 6c666bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for de71fc5 - Browse repository at this point
Copy the full SHA de71fc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d7f9119 - Browse repository at this point
Copy the full SHA d7f9119View commit details -
Merge pull request milibopp#9 from aepsil0n/docs
Update documentation
Configuration menu - View commit details
-
Copy full SHA for c7eda2d - Browse repository at this point
Copy the full SHA c7eda2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for cb38333 - Browse repository at this point
Copy the full SHA cb38333View commit details -
Merge pull request milibopp#10 from aepsil0n/travis_ci
Integrate with Travis CI
Configuration menu - View commit details
-
Copy full SHA for 1a9577e - Browse repository at this point
Copy the full SHA 1a9577eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 947d4e1 - Browse repository at this point
Copy the full SHA 947d4e1View commit details -
Add gravity calculation as an example
There is both a compilable Cargo project and a short excerpt in the readme for demonstrative purposes.
Configuration menu - View commit details
-
Copy full SHA for f1a4487 - Browse repository at this point
Copy the full SHA f1a4487View commit details -
Merge pull request milibopp#12 from aepsil0n/gravity_example
Add gravity calculation as an example
Configuration menu - View commit details
-
Copy full SHA for 4f3dec7 - Browse repository at this point
Copy the full SHA 4f3dec7View commit details
Commits on Dec 10, 2014
-
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.
Configuration menu - View commit details
-
Copy full SHA for e0216a9 - Browse repository at this point
Copy the full SHA e0216a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f76001 - Browse repository at this point
Copy the full SHA 8f76001View commit details
Commits on Dec 11, 2014
-
Merge pull request milibopp#17 from aepsil0n/abstract_node_state
Abstract container in NodeState
Configuration menu - View commit details
-
Copy full SHA for 8680d50 - Browse repository at this point
Copy the full SHA 8680d50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67ae6de - Browse repository at this point
Copy the full SHA 67ae6deView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 88d5487 - Browse repository at this point
Copy the full SHA 88d5487View commit details -
Merge pull request milibopp#18 from aepsil0n/unboxed_closures
Unboxed closures
Configuration menu - View commit details
-
Copy full SHA for 29fb875 - Browse repository at this point
Copy the full SHA 29fb875View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for d593292 - Browse repository at this point
Copy the full SHA d593292View commit details -
Merge pull request milibopp#19 from aepsil0n/debug_workaround
Disable debug info to workaround compiler bug
Configuration menu - View commit details
-
Copy full SHA for 8bbafb8 - Browse repository at this point
Copy the full SHA 8bbafb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for af14bc2 - Browse repository at this point
Copy the full SHA af14bc2View commit details -
Merge pull request milibopp#21 from aepsil0n/readme_travis_status
Include build status in readme
Configuration menu - View commit details
-
Copy full SHA for 56bdd43 - Browse repository at this point
Copy the full SHA 56bdd43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dead1e - Browse repository at this point
Copy the full SHA 0dead1eView commit details
Commits on Dec 12, 2014
-
Merge pull request milibopp#20 from aepsil0n/travis_fix
Fix Travis CI setup
Configuration menu - View commit details
-
Copy full SHA for bd2468e - Browse repository at this point
Copy the full SHA bd2468eView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for bddea6a - Browse repository at this point
Copy the full SHA bddea6aView commit details -
Merge pull request milibopp#22 from aepsil0n/quickcheck_as_devdependency
Reduce quickcheck to a dev-dependency
Configuration menu - View commit details
-
Copy full SHA for fd197e9 - Browse repository at this point
Copy the full SHA fd197e9View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 5519523 - Browse repository at this point
Copy the full SHA 5519523View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for d1f8fad - Browse repository at this point
Copy the full SHA d1f8fadView commit details -
Implement Positionable for references
This is useful if one wants to use the tree as a view performing computations on separate data structures.
Configuration menu - View commit details
-
Copy full SHA for 32ff5fb - Browse repository at this point
Copy the full SHA 32ff5fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4203ebf - Browse repository at this point
Copy the full SHA 4203ebfView commit details -
Merge pull request milibopp#23 from aepsil0n/positionable_restructure
Restructure the Positionable trait
Configuration menu - View commit details
-
Copy full SHA for afd00c2 - Browse repository at this point
Copy the full SHA afd00c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9480436 - Browse repository at this point
Copy the full SHA 9480436View commit details -
Merge pull request milibopp#24 from aepsil0n/readme_unboxed_closures
Use unboxed closures in readme
Configuration menu - View commit details
-
Copy full SHA for c990ee1 - Browse repository at this point
Copy the full SHA c990ee1View commit details -
Configuration menu - View commit details
-
Copy full SHA for a10ec09 - Browse repository at this point
Copy the full SHA a10ec09View commit details
Commits on Jan 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c3fbc71 - Browse repository at this point
Copy the full SHA c3fbc71View commit details -
Merge pull request milibopp#25 from aepsil0n/update_nightlies
Update to latest Rust nightlies
Configuration menu - View commit details
-
Copy full SHA for 8ca1540 - Browse repository at this point
Copy the full SHA 8ca1540View commit details
Commits on Jan 8, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 45e52f0 - Browse repository at this point
Copy the full SHA 45e52f0View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 9ce3202 - Browse repository at this point
Copy the full SHA 9ce3202View commit details -
Merge pull request milibopp#28 from aepsil0n/associated_types
Associated types
Configuration menu - View commit details
-
Copy full SHA for 873c13a - Browse repository at this point
Copy the full SHA 873c13aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3af4e4b - Browse repository at this point
Copy the full SHA 3af4e4bView commit details -
Merge pull request milibopp#30 from aepsil0n/examples_fix_and_ci
Fix and continuously integrate gravity example
Configuration menu - View commit details
-
Copy full SHA for 3fa23e4 - Browse repository at this point
Copy the full SHA 3fa23e4View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 689c9a0 - Browse repository at this point
Copy the full SHA 689c9a0View commit details -
Merge pull request milibopp#31 from aepsil0n/extract_gravity_tests
Extract gravity tests from library
Configuration menu - View commit details
-
Copy full SHA for aa31916 - Browse repository at this point
Copy the full SHA aa31916View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82a5ae3 - Browse repository at this point
Copy the full SHA 82a5ae3View commit details -
Now it can harbour any type implementing some notion of order and a mid point.
Configuration menu - View commit details
-
Copy full SHA for 60877e5 - Browse repository at this point
Copy the full SHA 60877e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5aa846 - Browse repository at this point
Copy the full SHA c5aa846View commit details -
Implement a 3D box partitioning scheme
This is abstracted over its dimension using macros now.
Configuration menu - View commit details
-
Copy full SHA for 6bb4d15 - Browse repository at this point
Copy the full SHA 6bb4d15View commit details
Commits on Jan 9, 2015
-
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.
Configuration menu - View commit details
-
Copy full SHA for 0bfbb23 - Browse repository at this point
Copy the full SHA 0bfbb23View commit details -
Split partitioning logic into multiple modules
The items are reexported to retain the apparent structure.
Configuration menu - View commit details
-
Copy full SHA for c7b2e06 - Browse repository at this point
Copy the full SHA c7b2e06View commit details -
Configuration menu - View commit details
-
Copy full SHA for d508f7e - Browse repository at this point
Copy the full SHA d508f7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e8da00 - Browse repository at this point
Copy the full SHA 2e8da00View commit details -
Make N-cube attributes private
They are exposed as getters now and the constructor ensures a positive, non-zero width.
Configuration menu - View commit details
-
Copy full SHA for 3acef25 - Browse repository at this point
Copy the full SHA 3acef25View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 6ec9947 - Browse repository at this point
Copy the full SHA 6ec9947View commit details
Commits on Jan 10, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d2f266f - Browse repository at this point
Copy the full SHA d2f266fView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 8c9d60c - Browse repository at this point
Copy the full SHA 8c9d60cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 60fdd94 - Browse repository at this point
Copy the full SHA 60fdd94View commit details -
Merge pull request milibopp#32 from aepsil0n/abstract_partition
Abstraction of partitioning logic
Configuration menu - View commit details
-
Copy full SHA for 1e775a7 - Browse repository at this point
Copy the full SHA 1e775a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5f00ec - Browse repository at this point
Copy the full SHA c5f00ecView commit details -
Merge pull request milibopp#36 from aepsil0n/arbitrary_feature
Export Arbitrary impls as optional feature
Configuration menu - View commit details
-
Copy full SHA for 84e0e38 - Browse repository at this point
Copy the full SHA 84e0e38View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94a8875 - Browse repository at this point
Copy the full SHA 94a8875View commit details -
Merge pull request milibopp#37 from aepsil0n/rust-nightly
Transition to Rust-1.0.0 alpha
Configuration menu - View commit details
-
Copy full SHA for 7ffaf11 - Browse repository at this point
Copy the full SHA 7ffaf11View commit details
Commits on Jan 11, 2015
-
Configuration menu - View commit details
-
Copy full SHA for bec1c63 - Browse repository at this point
Copy the full SHA bec1c63View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb7ab3f - Browse repository at this point
Copy the full SHA fb7ab3fView commit details -
Merge pull request milibopp#39 from aepsil0n/update-readme
Update readme to new API
Configuration menu - View commit details
-
Copy full SHA for efb642e - Browse repository at this point
Copy the full SHA efb642eView commit details -
Merge pull request milibopp#38 from aepsil0n/cargo-metadata
Complete package metadata in Cargo.toml
Configuration menu - View commit details
-
Copy full SHA for c15f9db - Browse repository at this point
Copy the full SHA c15f9dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45b99d2 - Browse repository at this point
Copy the full SHA 45b99d2View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 8bee1c9 - Browse repository at this point
Copy the full SHA 8bee1c9View commit details -
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`.
Configuration menu - View commit details
-
Copy full SHA for d180e50 - Browse repository at this point
Copy the full SHA d180e50View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 43d88e5 - Browse repository at this point
Copy the full SHA 43d88e5View commit details -
Split subdivision off as its own trait
Method dispatch gets more complicated for types that partition more than one domain.
Configuration menu - View commit details
-
Copy full SHA for 3277935 - Browse repository at this point
Copy the full SHA 3277935View commit details -
Configuration menu - View commit details
-
Copy full SHA for c56e837 - Browse repository at this point
Copy the full SHA c56e837View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3baa406 - Browse repository at this point
Copy the full SHA 3baa406View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 3216f47 - Browse repository at this point
Copy the full SHA 3216f47View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 01934dd - Browse repository at this point
Copy the full SHA 01934ddView commit details -
Merge pull request milibopp#40 from aepsil0n/more-partitions
Implement more partitions and improve partition system
Configuration menu - View commit details
-
Copy full SHA for db9e2b9 - Browse repository at this point
Copy the full SHA db9e2b9View commit details -
Merge pull request milibopp#41 from aepsil0n/inc-gravtest-tolerance
Increase tolerance of gravity tests to 10 %
Configuration menu - View commit details
-
Copy full SHA for e6bec4b - Browse repository at this point
Copy the full SHA e6bec4bView commit details
Commits on Jan 12, 2015
-
Expose geometry of UnitQuad and cubemap types
Also they were not public before.
Configuration menu - View commit details
-
Copy full SHA for c15ec83 - Browse repository at this point
Copy the full SHA c15ec83View commit details -
Merge pull request milibopp#43 from aepsil0n/quad-attributes
Expose geometry of UnitQuad and cubemap types
Configuration menu - View commit details
-
Copy full SHA for 74edabc - Browse repository at this point
Copy the full SHA 74edabcView commit details
Commits on Jan 13, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 723b1fd - Browse repository at this point
Copy the full SHA 723b1fdView commit details -
Merge pull request milibopp#45 from aepsil0n/derive_traits_partition
Derive PartialEq, Eq and Hash for some partitions
Configuration menu - View commit details
-
Copy full SHA for ed8d9cd - Browse repository at this point
Copy the full SHA ed8d9cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b24bc3 - Browse repository at this point
Copy the full SHA 2b24bc3View commit details -
Merge pull request milibopp#46 from aepsil0n/cubemap-quad-geometry
Add some functions for cubemap geometry
Configuration menu - View commit details
-
Copy full SHA for 32a630e - Browse repository at this point
Copy the full SHA 32a630eView commit details
Commits on Jan 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for eb7bb66 - Browse repository at this point
Copy the full SHA eb7bb66View commit details -
Configuration menu - View commit details
-
Copy full SHA for da6bd55 - Browse repository at this point
Copy the full SHA da6bd55View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for ff3953d - Browse repository at this point
Copy the full SHA ff3953dView commit details
Commits on Jan 19, 2015
-
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.
Configuration menu - View commit details
-
Copy full SHA for ecbbad8 - Browse repository at this point
Copy the full SHA ecbbad8View commit details -
Merge pull request milibopp#47 from aepsil0n/fix-unitquad
Use tuples for unit quad
Configuration menu - View commit details
-
Copy full SHA for 935fd22 - Browse repository at this point
Copy the full SHA 935fd22View commit details
Commits on Jan 24, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 22ddd26 - Browse repository at this point
Copy the full SHA 22ddd26View commit details -
Merge pull request milibopp#48 from aepsil0n/fix-nightly
Fix type inference on latest nightly
Configuration menu - View commit details
-
Copy full SHA for ca7f618 - Browse repository at this point
Copy the full SHA ca7f618View commit details
Commits on Jan 25, 2015
-
All dependencies are now on crates.io. A couple of new features and backwards-incompatible changes have been done since the last release.
Configuration menu - View commit details
-
Copy full SHA for 0de4c75 - Browse repository at this point
Copy the full SHA 0de4c75View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52b4b10 - Browse repository at this point
Copy the full SHA 52b4b10View commit details -
Merge pull request milibopp#49 from aepsil0n/example-dir
Restructure examples directory
Configuration menu - View commit details
-
Copy full SHA for f32adb2 - Browse repository at this point
Copy the full SHA f32adb2View commit details
Commits on Feb 1, 2015
-
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.
Configuration menu - View commit details
-
Copy full SHA for 276e703 - Browse repository at this point
Copy the full SHA 276e703View commit details -
Merge pull request milibopp#50 from aepsil0n/unstable-features
Explicitly use unstable features
Configuration menu - View commit details
-
Copy full SHA for 66d9d08 - Browse repository at this point
Copy the full SHA 66d9d08View commit details -
The example and integration tests had not been updated.
Configuration menu - View commit details
-
Copy full SHA for e6ab65b - Browse repository at this point
Copy the full SHA e6ab65bView commit details -
Merge pull request milibopp#51 from aepsil0n/unstable-example-tests
Fix more stability warnings
Configuration menu - View commit details
-
Copy full SHA for 8d80523 - Browse repository at this point
Copy the full SHA 8d80523View commit details
Commits on Feb 2, 2015
-
Add a test to prevent regressions. This ought to be tested somewhat more thoroughly nonetheless.
Configuration menu - View commit details
-
Copy full SHA for 4bf97cc - Browse repository at this point
Copy the full SHA 4bf97ccView commit details -
Merge pull request milibopp#52 from aepsil0n/sign-error
Correct a sign error
Configuration menu - View commit details
-
Copy full SHA for f0e6426 - Browse repository at this point
Copy the full SHA f0e6426View commit details
Commits on Feb 3, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e6267ec - Browse repository at this point
Copy the full SHA e6267ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c6a897 - Browse repository at this point
Copy the full SHA 8c6a897View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 4223014 - Browse repository at this point
Copy the full SHA 4223014View commit details
Commits on Feb 4, 2015
-
Implement an iterator over objects in a tree
The iterator traverses the entire tree node by node.
Configuration menu - View commit details
-
Copy full SHA for 417013b - Browse repository at this point
Copy the full SHA 417013bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50634d6 - Browse repository at this point
Copy the full SHA 50634d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8815f97 - Browse repository at this point
Copy the full SHA 8815f97View commit details
Commits on Feb 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6f7aeca - Browse repository at this point
Copy the full SHA 6f7aecaView commit details -
Merge pull request milibopp#57 from aepsil0n/iterator-design
Implement tree iterators including queries
Configuration menu - View commit details
-
Copy full SHA for bd01078 - Browse repository at this point
Copy the full SHA bd01078View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d29840 - Browse repository at this point
Copy the full SHA 6d29840View commit details
Commits on Feb 20, 2015
-
Add Item type to IntoIterator impls
Adapts to upstream changes in the stdlib.
Configuration menu - View commit details
-
Copy full SHA for ef23205 - Browse repository at this point
Copy the full SHA ef23205View commit details
Commits on Feb 22, 2015
-
Configuration menu - View commit details
-
Copy full SHA for a5e3817 - Browse repository at this point
Copy the full SHA a5e3817View commit details
Commits on Mar 5, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 2a65cf5 - Browse repository at this point
Copy the full SHA 2a65cf5View commit details -
Merge pull request milibopp#58 from aepsil0n/fix-intoiterator
Add Item type to IntoIterator impls
Configuration menu - View commit details
-
Copy full SHA for 4add571 - Browse repository at this point
Copy the full SHA 4add571View commit details -
Configuration menu - View commit details
-
Copy full SHA for df5aba4 - Browse repository at this point
Copy the full SHA df5aba4View commit details
Commits on Mar 24, 2015
-
Configuration menu - View commit details
-
Copy full SHA for c991c48 - Browse repository at this point
Copy the full SHA c991c48View commit details -
Merge pull request milibopp#59 from aepsil0n/fix-range
Replace last occurence of range(…) function
Configuration menu - View commit details
-
Copy full SHA for c9f9c7f - Browse repository at this point
Copy the full SHA c9f9c7fView commit details
Commits on Mar 27, 2015
-
Configuration menu - View commit details
-
Copy full SHA for fca6ef9 - Browse repository at this point
Copy the full SHA fca6ef9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4beda54 - Browse repository at this point
Copy the full SHA 4beda54View commit details
Commits on Mar 29, 2015
-
Merge pull request milibopp#60 from aepsil0n/feature-update
Handle optional stdlib features properly
Configuration menu - View commit details
-
Copy full SHA for 119d05a - Browse repository at this point
Copy the full SHA 119d05aView commit details
Commits on Mar 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 1dee08d - Browse repository at this point
Copy the full SHA 1dee08dView commit details
Commits on Apr 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b73bf6e - Browse repository at this point
Copy the full SHA b73bf6eView commit details -
Merge pull request milibopp#61 from aepsil0n/no-slice-patterns
Stop using experimental slice_patterns
Configuration menu - View commit details
-
Copy full SHA for a4ab0a9 - Browse repository at this point
Copy the full SHA a4ab0a9View commit details -
Instead the `num` crate is pulled in as a new dependency.
Configuration menu - View commit details
-
Copy full SHA for 8f8c0ea - Browse repository at this point
Copy the full SHA 8f8c0eaView commit details -
Merge pull request milibopp#62 from aepsil0n/no-core-feature
Avoid using the core feature
Configuration menu - View commit details
-
Copy full SHA for 3bcf6d7 - Browse repository at this point
Copy the full SHA 3bcf6d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8eb68f6 - Browse repository at this point
Copy the full SHA 8eb68f6View commit details
Commits on Apr 17, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 3cbcf7e - Browse repository at this point
Copy the full SHA 3cbcf7eView commit details -
Merge pull request milibopp#63 from aepsil0n/readme-update
Update readme badges
Configuration menu - View commit details
-
Copy full SHA for e910e92 - Browse repository at this point
Copy the full SHA e910e92View commit details
Commits on Apr 28, 2015
-
Fix for upstream breaking change in nalgebra. Also depend on precise versions of the dependencies.
Configuration menu - View commit details
-
Copy full SHA for 91d3be7 - Browse repository at this point
Copy the full SHA 91d3be7View commit details -
Merge pull request milibopp#64 from aepsil0n/stabilize
Stabilize for beta
Configuration menu - View commit details
-
Copy full SHA for 6bd0fe1 - Browse repository at this point
Copy the full SHA 6bd0fe1View commit details
Commits on May 29, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 49f0e28 - Browse repository at this point
Copy the full SHA 49f0e28View commit details
Commits on May 30, 2015
-
The test suite uses the unstable testing feature for benchmarks.
Configuration menu - View commit details
-
Copy full SHA for 2a270d7 - Browse repository at this point
Copy the full SHA 2a270d7View commit details -
Merge pull request milibopp#65 from aepsil0n/test-nightly
Test with Rust nightly
Configuration menu - View commit details
-
Copy full SHA for cb7a45d - Browse repository at this point
Copy the full SHA cb7a45dView commit details
Commits on Sep 8, 2015
-
Use own implementation to find NCube size in the gravity test, as par…
…tial_max was deprecated.
Configuration menu - View commit details
-
Copy full SHA for f4b0094 - Browse repository at this point
Copy the full SHA f4b0094View commit details
Commits on Sep 9, 2015
-
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.
Configuration menu - View commit details
-
Copy full SHA for c52cf5a - Browse repository at this point
Copy the full SHA c52cf5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e98358 - Browse repository at this point
Copy the full SHA 0e98358View commit details -
Configuration menu - View commit details
-
Copy full SHA for 665abc3 - Browse repository at this point
Copy the full SHA 665abc3View commit details
Commits on Sep 10, 2015
-
Merge pull request milibopp#70 from Moredread/impr/travis
Travis improvements
Configuration menu - View commit details
-
Copy full SHA for 78e7d09 - Browse repository at this point
Copy the full SHA 78e7d09View commit details
Commits on Oct 7, 2015
-
Eduard Bopp committed
Oct 7, 2015 Configuration menu - View commit details
-
Copy full SHA for e1cd15c - Browse repository at this point
Copy the full SHA e1cd15cView commit details -
Do not use superfluous feature "core"
Eduard Bopp committedOct 7, 2015 Configuration menu - View commit details
-
Copy full SHA for 38b0176 - Browse repository at this point
Copy the full SHA 38b0176View commit details
Commits on Oct 12, 2015
-
Merge pull request milibopp#76 from aepsil0n/fix-build
Upgrade to new nalgebra version
Configuration menu - View commit details
-
Copy full SHA for a5780aa - Browse repository at this point
Copy the full SHA a5780aaView commit details -
Traits must be explicit marked as `Sized` if this is required. Fixes milibopp#71.
Eduard Bopp committedOct 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 68564bd - Browse repository at this point
Copy the full SHA 68564bdView commit details -
Merge pull request milibopp#77 from aepsil0n/rfc-1214-accordance
Conform with RFC 1214
Configuration menu - View commit details
-
Copy full SHA for d2cb9a6 - Browse repository at this point
Copy the full SHA d2cb9a6View commit details -
Switch to travis-cargo for CI scripting
Eduard Bopp committedOct 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 0d1fb20 - Browse repository at this point
Copy the full SHA 0d1fb20View commit details -
Inconsistent tooling. Not a worthwhile CI environment anyway.
Eduard Bopp committedOct 12, 2015 Configuration menu - View commit details
-
Copy full SHA for 379d4aa - Browse repository at this point
Copy the full SHA 379d4aaView commit details
Commits on Oct 14, 2015
-
Merge pull request milibopp#78 from aepsil0n/travis-cargo
Switch to travis-cargo for CI scripting
Configuration menu - View commit details
-
Copy full SHA for 77d2ac7 - Browse repository at this point
Copy the full SHA 77d2ac7View commit details
Commits on Apr 7, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 99e0ef4 - Browse repository at this point
Copy the full SHA 99e0ef4View commit details -
Merge pull request milibopp#79 from Moredread/quickcheck-version
Fix quickcheck version
Configuration menu - View commit details
-
Copy full SHA for 3017093 - Browse repository at this point
Copy the full SHA 3017093View commit details
Commits on Aug 28, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 897a660 - Browse repository at this point
Copy the full SHA 897a660View commit details
Commits on Sep 2, 2016
-
Merge pull request milibopp#80 from Moredread/master
Bump dependencies
Configuration menu - View commit details
-
Copy full SHA for 30a3103 - Browse repository at this point
Copy the full SHA 30a3103View commit details
Commits on Sep 15, 2016
-
Configuration menu - View commit details
-
Copy full SHA for abcf8b0 - Browse repository at this point
Copy the full SHA abcf8b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa7a986 - Browse repository at this point
Copy the full SHA aa7a986View commit details -
Merge pull request milibopp#82 from Moredread/patch-1
Use travis-cargo < 0.2 as they follow semver
Configuration menu - View commit details
-
Copy full SHA for 937dfe2 - Browse repository at this point
Copy the full SHA 937dfe2View commit details -
Eduard Bopp committed
Sep 15, 2016 Configuration menu - View commit details
-
Copy full SHA for 0353f77 - Browse repository at this point
Copy the full SHA 0353f77View commit details -
Merge pull request milibopp#87 from aepsil0n/bump-nalgebra
Upgrade nalgebra to 0.10
Configuration menu - View commit details
-
Copy full SHA for 354fe03 - Browse repository at this point
Copy the full SHA 354fe03View commit details -
Merge pull request milibopp#84 from Moredread/patch-3
Fix spelling mistake introduced in last commit
Configuration menu - View commit details
-
Copy full SHA for 597f23d - Browse repository at this point
Copy the full SHA 597f23dView commit details
Commits on Sep 16, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 517771d - Browse repository at this point
Copy the full SHA 517771dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c9f20c7 - Browse repository at this point
Copy the full SHA c9f20c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2188547 - Browse repository at this point
Copy the full SHA 2188547View commit details -
Merge pull request milibopp#91 from Moredread/mpl
Change license to MPL 2.0
Configuration menu - View commit details
-
Copy full SHA for 7a47ac2 - Browse repository at this point
Copy the full SHA 7a47ac2View commit details -
Merge pull request milibopp#89 from Moredread/check_domain
Check if object is in domain of tree when creating the tree
Configuration menu - View commit details
-
Copy full SHA for c594be4 - Browse repository at this point
Copy the full SHA c594be4View commit details -
Merge pull request milibopp#90 from Moredread/bump_to_0_1_0
Bump version to 0.1.0
Configuration menu - View commit details
-
Copy full SHA for e1c518f - Browse repository at this point
Copy the full SHA e1c518fView commit details
Commits on Jan 8, 2017
-
Configuration menu - View commit details
-
Copy full SHA for aa6950b - Browse repository at this point
Copy the full SHA aa6950bView commit details
Commits on Jan 13, 2017
-
Merge pull request milibopp#93 from Moredread/bump
Bump dependency itertools to 0.5 and version to 0.1.1
Configuration menu - View commit details
-
Copy full SHA for 6b174c9 - Browse repository at this point
Copy the full SHA 6b174c9View commit details
Commits on Jan 15, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 31f27e7 - Browse repository at this point
Copy the full SHA 31f27e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for efa12ec - Browse repository at this point
Copy the full SHA efa12ecView commit details
Commits on Feb 26, 2017
-
Change documentation link to docs.rs
rust-ci.org is no longer registered, so the previous docs link was redirecting to a spam site :-/
Configuration menu - View commit details
-
Copy full SHA for 2f46bc1 - Browse repository at this point
Copy the full SHA 2f46bc1View commit details -
Merge pull request milibopp#94 from carols10cents/patch-1
Change documentation link to docs.rs
Configuration menu - View commit details
-
Copy full SHA for 486c9ed - Browse repository at this point
Copy the full SHA 486c9edView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f334c8 - Browse repository at this point
Copy the full SHA 0f334c8View commit details
Commits on Sep 22, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 561136b - Browse repository at this point
Copy the full SHA 561136bView commit details -
Configuration menu - View commit details
-
Copy full SHA for cbed88c - Browse repository at this point
Copy the full SHA cbed88cView commit details
Commits on Jun 10, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 0c6870f - Browse repository at this point
Copy the full SHA 0c6870fView commit details
Commits on Jun 15, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 93f519a - Browse repository at this point
Copy the full SHA 93f519aView commit details
Commits on Jul 3, 2020
-
Merge pull request milibopp#100 from edibopp/dependabot/cargo/num-0.3
Update num requirement from 0.1 to 0.3
Configuration menu - View commit details
-
Copy full SHA for 46a41aa - Browse repository at this point
Copy the full SHA 46a41aaView commit details -
Merge pull request milibopp#97 from edibopp/dependabot/cargo/itertool…
…s-0.9 Update itertools requirement from 0.5 to 0.9
Configuration menu - View commit details
-
Copy full SHA for 6f074fe - Browse repository at this point
Copy the full SHA 6f074feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 061bca0 - Browse repository at this point
Copy the full SHA 061bca0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 955f17b - Browse repository at this point
Copy the full SHA 955f17bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 02cfe7e - Browse repository at this point
Copy the full SHA 02cfe7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae7112b - Browse repository at this point
Copy the full SHA ae7112bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d8aef3a - Browse repository at this point
Copy the full SHA d8aef3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for bab257e - Browse repository at this point
Copy the full SHA bab257eView commit details -
nalgebra: 0.10 → 0.21 rand: 0.3 → 0.7 num: 0.3 → num_traits: 0.2 quickcheck: 0.2 → 0.9
Configuration menu - View commit details
-
Copy full SHA for 21c2449 - Browse repository at this point
Copy the full SHA 21c2449View commit details -
Configuration menu - View commit details
-
Copy full SHA for 851c5c3 - Browse repository at this point
Copy the full SHA 851c5c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb2a9c8 - Browse repository at this point
Copy the full SHA eb2a9c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba5df99 - Browse repository at this point
Copy the full SHA ba5df99View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94c1e4e - Browse repository at this point
Copy the full SHA 94c1e4eView commit details
Commits on Aug 26, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for ef17d8b - Browse repository at this point
Copy the full SHA ef17d8bView commit details -
Merge pull request milibopp#102 from edibopp/dependabot/cargo/nalgebr…
…a-0.22 Update nalgebra requirement from 0.21 to 0.22
Configuration menu - View commit details
-
Copy full SHA for 365685c - Browse repository at this point
Copy the full SHA 365685cView commit details
Commits on Oct 26, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 8c98ab9 - Browse repository at this point
Copy the full SHA 8c98ab9View commit details
Commits on Oct 27, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 045a8af - Browse repository at this point
Copy the full SHA 045a8afView commit details
Commits on Dec 10, 2020
-
Merge pull request milibopp#103 from edibopp/dependabot/cargo/approx-0.4
Update approx requirement from 0.3 to 0.4
Configuration menu - View commit details
-
Copy full SHA for 8367c33 - Browse repository at this point
Copy the full SHA 8367c33View commit details -
Merge pull request milibopp#104 from edibopp/dependabot/cargo/nalgebr…
…a-0.23 Update nalgebra requirement from 0.22 to 0.23
Configuration menu - View commit details
-
Copy full SHA for dfe1fc9 - Browse repository at this point
Copy the full SHA dfe1fc9View commit details
Commits on Dec 21, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 547f4af - Browse repository at this point
Copy the full SHA 547f4afView commit details -
Merge pull request milibopp#105 from edibopp/dependabot/cargo/rand-0.8
Update rand requirement from 0.7 to 0.8
Configuration menu - View commit details
-
Copy full SHA for a9da4a3 - Browse repository at this point
Copy the full SHA a9da4a3View commit details
Commits on Dec 28, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for f688714 - Browse repository at this point
Copy the full SHA f688714View commit details
Commits on Dec 31, 2020
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 0c59746 - Browse repository at this point
Copy the full SHA 0c59746View commit details
Commits on Jan 4, 2021
-
Merge pull request milibopp#107 from edibopp/dependabot/cargo/nalgebr…
…a-0.24 Update nalgebra requirement from 0.23 to 0.24
Configuration menu - View commit details
-
Copy full SHA for 206a7fb - Browse repository at this point
Copy the full SHA 206a7fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e46222 - Browse repository at this point
Copy the full SHA 1e46222View commit details
Commits on Jan 11, 2021
-
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]>
Configuration menu - View commit details
-
Copy full SHA for e023dac - Browse repository at this point
Copy the full SHA e023dacView commit details
Commits on Jan 14, 2021
-
Merge pull request milibopp#108 from edibopp/dependabot/cargo/quickch…
…eck-1.0 Update quickcheck requirement from 0.9 to 1.0
Configuration menu - View commit details
-
Copy full SHA for 0a6e3e4 - Browse repository at this point
Copy the full SHA 0a6e3e4View commit details
Commits on Mar 2, 2021
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 1454567 - Browse repository at this point
Copy the full SHA 1454567View commit details -
Merge pull request milibopp#109 from edibopp/dependabot/cargo/nalgebr…
…a-0.25 Update nalgebra requirement from 0.24 to 0.25
Configuration menu - View commit details
-
Copy full SHA for ea1bd7b - Browse repository at this point
Copy the full SHA ea1bd7bView commit details
Commits on Apr 29, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 492a0e0 - Browse repository at this point
Copy the full SHA 492a0e0View commit details
Commits on Jun 3, 2021
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 8d7eeb4 - Browse repository at this point
Copy the full SHA 8d7eeb4View commit details
Commits on Jun 16, 2021
-
Merge pull request milibopp#113 from edibopp/dependabot/cargo/approx-0.5
Update approx requirement from 0.4 to 0.5
Configuration menu - View commit details
-
Copy full SHA for de8a7ed - Browse repository at this point
Copy the full SHA de8a7edView commit details -
Configuration menu - View commit details
-
Copy full SHA for c0fb146 - Browse repository at this point
Copy the full SHA c0fb146View commit details -
Merge pull request milibopp#111 from edibopp/dependabot/add-v2-config…
…-file Upgrade to GitHub-native Dependabot
Configuration menu - View commit details
-
Copy full SHA for 70a1759 - Browse repository at this point
Copy the full SHA 70a1759View commit details -
Merge pull request milibopp#106 from edibopp/dependabot/cargo/itertoo…
…ls-0.10 Update itertools requirement from 0.9 to 0.10
Configuration menu - View commit details
-
Copy full SHA for 597708d - Browse repository at this point
Copy the full SHA 597708dView commit details
Commits on Jul 12, 2021
-
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]>
Configuration menu - View commit details
-
Copy full SHA for d1db553 - Browse repository at this point
Copy the full SHA d1db553View commit details
Commits on Jul 22, 2021
-
Merge pull request milibopp#115 from edibopp/dependabot/cargo/nalgebr…
…a-0.28 Update nalgebra requirement from 0.25 to 0.28
Configuration menu - View commit details
-
Copy full SHA for 75e2f48 - Browse repository at this point
Copy the full SHA 75e2f48View commit details
Commits on Aug 9, 2021
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 7d627d4 - Browse repository at this point
Copy the full SHA 7d627d4View commit details
Commits on Aug 26, 2021
-
Merge pull request milibopp#116 from edibopp/dependabot/cargo/nalgebr…
…a-0.29 Update nalgebra requirement from 0.28 to 0.29
Configuration menu - View commit details
-
Copy full SHA for ffd9bd9 - Browse repository at this point
Copy the full SHA ffd9bd9View commit details
Commits on Dec 29, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 14ac8ad - Browse repository at this point
Copy the full SHA 14ac8adView commit details