Skip to content

Commit

Permalink
chore: Release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
slavik-pastushenko committed Nov 8, 2023
1 parent 0a2055c commit 9df01e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,14 +1,14 @@
[package]
name = "supercluster"
description = "A very fast Rust crate for geospatial point clustering"
version = "1.0.7"
version = "1.0.8"
edition = "2021"
license = "MIT"
readme = "README.md"
authors = ["Chargetrip <dev@chargetrip.com>"]
keywords = ["supercluster", "geospatial", "geo", "tile", "mvt"]
exclude = [".github/**"]
documentation = "https://docs.rs/supercluster/1.0.7"
documentation = "https://docs.rs/supercluster/1.0.8"
repository = "https://github.com/chargetrip/supercluster-rust"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/kdbush.rs
Expand Up @@ -2,7 +2,7 @@
type Point = [f64; 2];

/// A very fast static spatial index for 2D points based on a flat KD-tree
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct KDBush {
/// Node size for the KD-tree. Determines the number of points in a leaf node
pub node_size: usize,
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Expand Up @@ -22,7 +22,7 @@ const OFFSET_NUM: usize = 5;
const OFFSET_PROP: usize = 6;

/// Supercluster configuration options
#[derive(Debug)]
#[derive(Clone, Debug)]
pub struct Options {
/// Min zoom level to generate clusters on
pub min_zoom: i32,
Expand Down Expand Up @@ -97,7 +97,7 @@ pub struct Tile {
pub features: Vec<Feature>,
}

#[derive(Debug)]
#[derive(Clone, Debug)]
/// A spatial clustering configuration and data structure
pub struct Supercluster {
/// Configuration settings
Expand Down

0 comments on commit 9df01e6

Please sign in to comment.