Skip to content

Commit

Permalink
feat(supercluster): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
slavik-pastushenko committed Oct 21, 2024
1 parent 5b7b46b commit 2c3344a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
19 changes: 5 additions & 14 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,14 @@

_Please replace this text with a summary of the change and what issue is fixed and include relevant context._

### 💡 Type of change

- [ ] 🐛 **Fix** (non-breaking change which fixes an issue)
- [ ]**Feature** (non-breaking change which adds functionality)
- [ ] 💥 **BREAKING CHANGE** (fix or feature that would cause existing functionality not to work as expected)
- [ ] 🗒️ **Other** (updating CI or config which doesn't require a code rebuild)

### 🚨 Checklist

- [ ] My changes do not introduce backwards compatibility issues
- [ ] I have performed a self-review of my own code
- [ ] My changes generate no new warnings (Compiler, Clippy)
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] My changes do not introduce backwards compatibility issues.
- [ ] I have commented my code, particularly in hard-to-understand areas.
- [ ] I have actively considered and searched for potential security issues and did address these.

### 🧪 Tests

- [ ] I have added missing tests for related code
- [ ] I have manually tested my code for regression on existing functionality
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added missing tests for related code.
- [ ] I have manually tested my code for regression on existing functionality.
- [ ] I have added tests that prove my fix is effective or that my feature works.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Run build
run: cargo build
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
run: cargo clippy --all-targets --all-features --no-deps -- -D warnings
- name: Run rustfmt
run: cargo fmt -- --check
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "supercluster"
description = "A very fast Rust crate for geospatial point clustering"
description = "A very fast Rust crate for geospatial point clustering."
version = "1.0.17"
edition = "2021"
license = "MIT"
Expand All @@ -9,8 +9,8 @@ authors = ["Chargetrip <dev@chargetrip.com>"]
keywords = ["supercluster", "geospatial", "geo", "tile", "mvt"]
exclude = [".github/**"]
documentation = "https://docs.rs/supercluster"
repository = "https://github.com/chargetrip/supercluster-rust"
repository = "https://github.com/chargetrip/supercluster-rs"

[dependencies]
geojson = "0.24.1"
serde_json = "1.0.120"
serde_json = "1.0.132"
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

A very fast Rust crate for geospatial point clustering.

This crate is inspired by Mapbox's supercluster [JS package](https://www.npmjs.com/package/supercluster) and [blog post](https://www.mapbox.com/blog/supercluster/).
This crate is inspired by Mapbox's supercluster [blog post](https://blog.mapbox.com/clustering-millions-of-points-on-a-map-with-supercluster-272046ec5c97).

## Reference implementation

[![test](https://github.com/chargetrip/supercluster-rust/actions/workflows/test.yml/badge.svg)](https://github.com/chargetrip/supercluster-rust/actions/workflows/test.yml)
[![test](https://github.com/chargetrip/supercluster-rs/actions/workflows/test.yml/badge.svg)](https://github.com/chargetrip/supercluster-rs/actions/workflows/test.yml)
[![docs](https://docs.rs/supercluster/badge.svg)](https://docs.rs/supercluster)
[![crate](https://img.shields.io/crates/v/supercluster.svg)](https://crates.io/crates/supercluster)
![downloads](https://img.shields.io/crates/d/supercluster)
![GitHub](https://img.shields.io/github/license/chargetrip/supercluster-rust)
![GitHub](https://img.shields.io/github/license/chargetrip/supercluster-rs)
[![codecov](https://codecov.io/gh/chargetrip/supercluster-rs/graph/badge.svg?token=9EL0F6725A)](https://codecov.io/gh/chargetrip/supercluster-rs)

![Features](https://cloud.githubusercontent.com/assets/25395/11857351/43407b46-a40c-11e5-8662-e99ab1cd2cb7.gif)

Expand Down Expand Up @@ -47,7 +48,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in

For more in-depth details, please refer to the full [documentation](https://docs.rs/supercluster).

If you encounter any issues or have questions that are not addressed in the documentation, feel free to [submit an issue](https://github.com/chargetrip/supercluster-rust/issues).
If you encounter any issues or have questions that are not addressed in the documentation, feel free to [submit an issue](https://github.com/chargetrip/supercluster-rs/issues).

## Usage

Expand Down Expand Up @@ -109,7 +110,7 @@ cargo test
Run [clippy](https://github.com/rust-lang/rust-clippy):

```bash
cargo clippy --all-targets --all-features -- -D warnings
cargo clippy --all-targets --all-features --no-deps -- -D warnings
```

Run [rustfmt](https://github.com/rust-lang/rustfmt):
Expand Down

0 comments on commit 2c3344a

Please sign in to comment.