From 10cc4bde0bfbd08c19d5a9e1be0682986371f92f Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Fri, 15 Dec 2023 11:32:16 -0800 Subject: [PATCH] Add clippy to cspell.json and update README.md with CI and rust-clippy badges - Add "clippy" to the "words" list in cspell.json - Update README.md with CI and rust-clippy badges --- README.md | 6 ++++++ cspell.json | 1 + 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index e6b1185..7a5c2d5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,16 @@ # d-delaunay +[![CI](https://github.com/acgetchell/d-delaunay/actions/workflows/ci.yml/badge.svg)](https://github.com/acgetchell/d-delaunay/actions/workflows/ci.yml) +[![rust-clippy analyze](https://github.com/acgetchell/d-delaunay/actions/workflows/rust-clippy.yml/badge.svg)](https://github.com/acgetchell/d-delaunay/actions/workflows/rust-clippy.yml) + D-dimensional Delaunay triangulations in Rust, inspired by [CGAL]. ## Introduction This library implements d-dimensional Delaunay triangulations and CGAL-like features in Rust. It is inspired by the [CGAL] library, which is a C++ library for computational geometry; and [Spade], a Rust library implementing 2D Delaunay triangulations, Constrained Delaunay triangulations, and Voronoi diagrams. The eventual goal of this library is to provide a lightweight Rust alternative to [CGAL]. +At some point I may merge it into another library, such as [Spade], or [delaunay], but for now I am developing this without trying to figure out how to fit into the coding style and standards of another library. + [CGAL]: https://www.cgal.org/ [Spade]: https://github.com/Stoeoef/spade +[delaunay]: https://crates.io/crates/delaunay diff --git a/cspell.json b/cspell.json index e2a40b3..946b2cc 100644 --- a/cspell.json +++ b/cspell.json @@ -6,6 +6,7 @@ "words": [ "acgetchell", "CGAL", + "clippy", "Voronoi" ], "ignoreWords": [],