Skip to content

Commit

Permalink
Updated edition and dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanemagnenat committed Jun 28, 2023
1 parent 1ed6a90 commit 3670e01
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Unreleased

### 0.3.0 - 2023-06-28

* Derive `Clone` trait for `KDTree`.
* Switched to Rust 2021 edition.
* Updated `ordered-float` to version 3.7 and `criterion` to version 0.5.

### 0.2.1 - 2021-09-13

* Fixed linear candidate container to return less than k entries rather than entries with infinity if not enough neighbours can be found.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "nabo"
version = "0.2.1"
edition = "2018"
version = "0.3.0"
edition = "2021"
authors = ["Stéphane Magnenat <stephane.magnenat@enlightware.ch>", "Hannes Sommer <hannes.sommer@enlightware.ch>"]
license = "MIT OR Apache-2.0"
description = "A fast K Nearest Neighbor (KNN) library for low-dimensional spaces"
Expand All @@ -20,13 +20,13 @@ dummy_point = ["rand"]
[dependencies]
partition = "0.1.2"
num-traits = "0.2"
ordered-float = "2.7.0"
ordered-float = "3.7.0"
rand = { version = "0.8", optional = true }

[dev-dependencies]
rand = "0.8"
float-cmp = "0.9"
criterion = "0.3"
criterion = "0.5"

[profile.release]
debug = 1
Expand Down

0 comments on commit 3670e01

Please sign in to comment.