Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"rust",
"geospatial",
"geography",
"geometry",
"gis"
],
"is_fork": false,
"size_kb": 42221,
"has_wiki": false,
"homepage": "https://crates.io/crates/geo",
"languages": {
"Rust": 2602369,
"Python": 1050
},
"pushed_at": "2026-08-02T20:52:20Z",
"created_at": "2015-01-16T01:00:41Z",
"owner_type": "Organization",
"updated_at": "2026-08-02T18:35:21Z",
"description": "Rust geospatial primitives & algorithms",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "main",
"license_spdx_raw": "NOASSERTION",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://georust.org",
"name": "GeoRust",
"type": "Organization",
"login": "georust",
"company": null,
"location": null,
"followers": 895,
"avatar_url": "https://avatars.githubusercontent.com/u/10320338?v=4",
"created_at": "2014-12-27T03:19:13Z",
"is_verified": null,
"public_repos": 38,
"account_age_days": 4236
},
"license": {
"state": "custom",
"spdx_id": null,
"raw_spdx": "NOASSERTION",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "0.17.1",
"kind": "patch",
"published_at": "2021-02-25T23:14:16Z"
},
{
"tag": "0.4.1",
"kind": "patch",
"published_at": "2019-02-22T14:36:47Z"
}
],
"recent_commits": [
{
"oid": "6d886dab783edbf5fab58c01540c7e8c7afdc00b",
"body": null,
"is_bot": false,
"headline": "prepare for geo-types-0.7.20 release",
"author_name": "Michael Kirk",
"author_login": null,
"committed_at": "2026-07-31T23:41:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7c91e515a129f0a852b198990f33a5e2bc9169b",
"body": "* GH-1470 Update i_overlay to 4.4, enable OGC-compliant polygon extraction\n\nBumps i_overlay from 4.0 to 4.4 and enables `OverlayOptions::ogc()` for all\nboolean operations. This ensures output polygons have connected interiors per\nISO 19125-1, fixing cases where holes sharing vertices produced invali\n[…]\n\n* respond to pr feedback\n\n---------\n\nCo-authored-by: Brett Tully <brett.tully@nearmap.com>\nCo-authored-by: Claude Opus 4.6 <noreply@anthropic.com>\nCo-authored-by: Michael Kirk <mkirk@endoftheworl.de>",
"is_bot": false,
"headline": "fix simply connected interior validation (#1522)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-07-30T08:30:29Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "fc552cdc635242aeb9722c4638a46ae1675c73f2",
"body": null,
"is_bot": false,
"headline": "minor earcut bump to keep tests consistent (#1570)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-07-29T06:08:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25e5a9f42c78ab033398d0d49662b027bedffc89",
"body": "Many of my projects end up having a simplified Display impl for Geometry to print just the type of the geometry. Might as well move this to the core.\n\nNote that there is another any-based impl that includes geometry type - this is different, as it is more suitable for dev than for end user.",
"is_bot": false,
"headline": "feat: add static_name() to Geometry for type identification (#1562)",
"author_name": "Yuri Astrakhan",
"author_login": "nyurik",
"committed_at": "2026-07-24T18:29:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d8aa3b0f35057a1e3a1f5d3a44e4fdab52e38c2",
"body": "* chore: simplify all errors with `thiserror`\n\nTons of manually-maintained code can be done much cleaner and bug-free with `thiserror` crate.\n\nNote that `TriangulationError` error is duplicated for some reason in `triangulate_delaunay.rs` and `triangulate_spade.rs`, and they are nearly identical. Also, for some weird reason their error message was just the default Debug impl - not helpful. But this is all for another PR.\n\n* simplify changelog message",
"is_bot": false,
"headline": "chore: simplify all errors with `thiserror` (#1563)",
"author_name": "Yuri Astrakhan",
"author_login": "nyurik",
"committed_at": "2026-07-24T17:52:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "15810a8a672121833344e215abc024677ffb0774",
"body": "Implements RTreeObject and PointDistance for Rect across all supported\nrstar versions. distance_2 delegates to AABB::distance_2, which clamps\nthe query point into the box in O(1).\n\nCo-authored-by: Michael Kirk <mkirk@endoftheworl.de>\nCo-authored-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Add `rstar` support for `Rect` (#1549)",
"author_name": "msalib",
"author_login": "msalib",
"committed_at": "2026-07-24T08:22:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dea21ba5716d4e6fe5b159de2ddab40ea1e326a",
"body": "Several improvements to separable_geometry_distance_fast:\n\n- Hoist the invariant scale factor sqrt(1 + slope²) out of the pruning\n loop and unify the two threshold formulas. The previous update formula\n sqrt(min² · (1 + slope²)) overflowed to infinity for minimum distances\n beyond ~1e154, silentl\n[…]\nces quadratic\ngrowth in vertex count with linear: 2.7× faster at 1,000 vertices,\n9.1× at 4,000, and 35× at 16,000, with identical results.\n\nAdds a benchmark exercising the overlapping-projection case.",
"is_bot": false,
"headline": "Optimise the separable geometry distance fast path (#1560)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-07-23T22:42:17Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9602906cd9428435eb876ddd763098e972fc7726",
"body": "* Replace partial_cmp unwrap with total_cmp in lex_cmp\n\n* Update CHANGES.md\n\n---------\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Replace partial_cmp unwrap with total_cmp in lex_cmp (#1555)",
"author_name": "Luca Cappelletti",
"author_login": "LucaCappelletti94",
"committed_at": "2026-07-23T20:28:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc200f3e2073b01e6517741d75f4b83f150a22ae",
"body": "…g (#1552)",
"is_bot": false,
"headline": "Propagate non-finite coordinates through Centroid instead of panickin…",
"author_name": "Luca Cappelletti",
"author_login": "LucaCappelletti94",
"committed_at": "2026-07-23T20:27:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b2127d9ad992315ec3198fc998623bc27a60fc2",
"body": "Co-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Use total_cmp in sweep line interval ordering (#1554)",
"author_name": "Luca Cappelletti",
"author_login": "LucaCappelletti94",
"committed_at": "2026-07-22T17:30:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "119a381fa3ad93c0d61843948ba869aa84bb00bb",
"body": "This PR adds Substring / SubstringableLine: vertex-preserving sub-linestring extraction over any\nmetric space.\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Add linear referencing functionality (#1529)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-07-22T09:41:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7b9c8417eec4b8a5763ca487fcb51c7d7cb1b177",
"body": "Signed-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Add rstar 0.13 support (#1536)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-07-20T18:33:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a67064a4e43eca66b034fb4bd2ec211fc5b6dd5",
"body": "Add a doc-test example to the Contains trait showing that a LineString's\nendpoints belong to its boundary (not its interior) and so are not\n'contained', while interior points are -- a consequence of the DE-9IM\nsemantics already described in the trait docs.\n\nCo-authored-by: caraka <caraka@oxicrypt.dev>",
"is_bot": false,
"headline": "Document that a LineString's endpoints are not contained (#1548)",
"author_name": "Richard Leckinger",
"author_login": "caraka",
"committed_at": "2026-07-20T16:59:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c3bf2ada62e6d8a3bad8b6eb91b3305c137c606",
"body": "* Add test: SimplifyVwPreserve is strictly subtractive\n\nPin the invariant that output coords are a subset of input coords.\nFixture exercises the shared-rtree retention branch.\n\nRefs: https://github.com/georust/geo/issues/1537\n\n* Add failing tests for SimplifyVwPreserveIdx\n\nMirror SimplifyIdx / Simpl\n[…]\n method.\nNo point in copy/pasting non-trivial tests around - it just makes future\nmaintenance burdensome.\n\n* make fields private\n\n---------\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Add index variants to SimplifyVwPreserve and ConvexHull (#1538)",
"author_name": "Will Cohen",
"author_login": "willcohen",
"committed_at": "2026-07-20T16:57:42Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2e6ea9115cb976f438046627b49c84feabc04351",
"body": "Haversine, Geodesic and Rhumb built the interior points with a floating\npoint accumulator compared against 1.0. Repeatedly adding 1/N drifts just\nbelow 1.0 for roughly 40% of N, so the loop ran one extra iteration and\npushed an interior point coincident with `end` — a duplicate final vertex\nand a ze\n[…]\nte over an integer step count instead, mirroring `densify_between`\n(which the Euclidean space already uses). Interior ratios become a single\nmultiply per step, so non-triggering outputs are unchanged.",
"is_bot": false,
"headline": "Fix duplicate final vertex in points_along_line (#1559)",
"author_name": "Vincent Gao",
"author_login": "gaoflow",
"committed_at": "2026-07-20T16:03:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "771d1bf8d4cd8ad9b27b589b8a485d0aac2e5cba",
"body": "Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>",
"is_bot": false,
"headline": "fix: handle high-latitude segments in HaversineClosestPoint (#1551)",
"author_name": "Matt Van Horn",
"author_login": "mvanhorn",
"committed_at": "2026-07-12T08:24:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34b93f80555001b9071d2c51d9d65e58235364e1",
"body": "Both the Apache-2.0 and MIT licenses require that redistributed\nsources contain a copy of the original license text.",
"is_bot": false,
"headline": "Include license texts in all published crates (#1550)",
"author_name": "Fabio Valentini",
"author_login": "decathorpe",
"committed_at": "2026-07-02T13:00:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3490fe13dac4f21a8b85ea88bf6ea286e80f6122",
"body": "Bumps the gha-updates group with 1 update: [actions/checkout](https://github.com/actions/checkout).\n\n\nUpdates `actions/checkout` from 6 to 7\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://g\n[…]\nversion-update:semver-major\n dependency-group: gha-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "Bump actions/checkout from 6 to 7 in the gha-updates group (#1547)",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-06-22T09:09:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "340bbc37cbe24fb30947a1ada8b4be7e43f96eff",
"body": "* Perf: GeometryGraph constructor builds RTree\n\nMy original intent was to be able to use GeometryGraph outside of the\ncontext of PreparedGeometry without having to copy the setup code in\n`prepare_geometry`.\n\nThe nice side side effect of this is an incidental speedup.\nI think it's because we are rebu\n[…]\n3199 ms 4.3457 ms]\n change: [-30.030% -29.516% -28.997%] (p = 0.00 < 0.05)\n Performance has improved.\n```\n\n* fix changelog now that releases have gone out",
"is_bot": false,
"headline": "Perf: GeometryGraph constructor builds RTree (#1521)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-06-17T20:40:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dd2c56793fa93c3c9df5c30923c0be86aad9ae37",
"body": "Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>",
"is_bot": false,
"headline": "Fix GeometryCollection::is_empty semantics (#1545)",
"author_name": "Matt Van Horn",
"author_login": "mvanhorn",
"committed_at": "2026-06-14T15:17:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46b8215e3ab8e91f45bca77495c1875b8f4721a2",
"body": "…tersection()` operations (#1542)\n\nReference: https://github.com/georust/geo/discussions/1539",
"is_bot": false,
"headline": "Add `RectOps` trait with RectOps::rect_union()` and `RectOps::rect_in…",
"author_name": "Mikolaj Wielgus",
"author_login": "mikwielgus",
"committed_at": "2026-06-10T13:59:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11db3cd07d75bdb60c1a4fdb349138054fcc47a3",
"body": "…1543)\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Surface repair_polygon/MakeValid at top level, fix doc duplication (#…",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-06-10T13:32:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "338de63a2a661c500ca52e3ac3b53a2ca0dd0bf7",
"body": "* clamp in haversine distance calculation to prevent NaN\n\n* changelog\n\n---------\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "clamp in haversine distance calculation to prevent NaN (#1535)",
"author_name": "Quentin Kniep",
"author_login": "qkniep",
"committed_at": "2026-06-08T22:16:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8126f0a5cc41aee51bd08a953af4b0b29db7e611",
"body": "* Add reusable Earcutter instance\n\n* changelog\n\n* DRY up triangulation logic, make API more discoverable, renames for\nclarity\n\n---------\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Add reusable Earcutter instance (#1534)",
"author_name": "Taku Fukada",
"author_login": "ciscorn",
"committed_at": "2026-05-11T17:03:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f34ee562db2a843037fb865d354b82a521cd9796",
"body": "* chore: Unpin earcut version\n\n* changelog",
"is_bot": false,
"headline": "chore: Unpin earcut version (#1533)",
"author_name": "Taku Fukada",
"author_login": "ciscorn",
"committed_at": "2026-04-28T17:23:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2c689faaf2487c23f9391d64d1e1115fb9d0376",
"body": "Signed-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Document IntervalTreeMultiPolygon at crate root and on the type (#1528)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-04-27T20:02:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "62f21947b98659b7bd3f5ec2628e199bb47b298a",
"body": "…531)\n\nCo-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>",
"is_bot": false,
"headline": "Reference earcut feature in TriangulateEarcut docs (closes #1530) (#1…",
"author_name": "Matt Van Horn",
"author_login": "mvanhorn",
"committed_at": "2026-04-27T20:00:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ab50b072e34a915a33eaa46c80763d51d61295e",
"body": null,
"is_bot": false,
"headline": "prepare for 0.33.1 release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-20T18:02:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "386b4b0fdc3782afd0d562034e76b778a7fdf627",
"body": null,
"is_bot": false,
"headline": "Fix earcut build",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-20T17:57:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfde97cb5cc6955add10132761a01b4089fea96d",
"body": null,
"is_bot": false,
"headline": "prepare for geo v0.33.0 release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-15T00:07:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4c0a49a91e0aedaa336008fced512e4bf84b192",
"body": "* Add ball tree spatial index with construction, NN, k-NN, radius search, and BuildBallTree trait\n\n\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\n\nLeaf size tweaks\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\n\n* Unify BallTree construction API via BallTreePoint trait and PointWithData wrapper\n\n\nSig\n[…]\nhan Hügel <shugel@tcd.ie>\n\n* Add ball_tree leaf size sweep benchmarks\n\n* fixup docs\n\n---------\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Add ball tree spatial index (#1502)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-04-15T00:00:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "981be9feea12cdede572fb252064536cb8b287b1",
"body": null,
"is_bot": false,
"headline": "prepare for geo-types v0.7.19 release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-13T22:38:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d9831d32dce7466e8f824a557f1a86355feadd0",
"body": "* GH-1470 Update i_overlay to 4.4, enable OGC-compliant polygon extraction\n\nBumps i_overlay from 4.0 to 4.4 and enables `OverlayOptions::ogc()` for all\nboolean operations. This ensures output polygons have connected interiors per\nISO 19125-1, fixing cases where holes sharing vertices produced invali\n[…]\nd-By: Claude Opus 4.6 <noreply@anthropic.com>\n\n* fixup tests after merge\n\n---------\n\nCo-authored-by: Claude Opus 4.6 <noreply@anthropic.com>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Use PreparedGeometry for polygon validation performance (#1501)",
"author_name": "bretttully",
"author_login": "bretttully",
"committed_at": "2026-04-13T20:17:21Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "7c00e17c2fb21175cffddb294581cf58b6eef2b7",
"body": "* Implement MonotoneChain primitive data structure\n- Add geometries backed by Monotone Chains\n- implement intersects and properly_contains(partial) for monotone chain backed geometries\n- large speedup on more complex geometries, but slower than base impl for simpler geometries\n\n* fix PR comments\n- r\n[…]\n0.05)\n Performance has improved.\n\n* fix review comments\n\n---------\n\nCo-authored-by: cookiedan42 <git@cookiedan42.com>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Implement MonotoneChain data structure (#1467)",
"author_name": "Daniel",
"author_login": "cookiedan42",
"committed_at": "2026-04-06T22:21:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "dd73f38b02619652e043b2e036b4391f06008aba",
"body": null,
"is_bot": false,
"headline": "update i_overlay (#1520)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-03T22:22:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c11b5d55a38a7e3fc4ce7ecb6d64108110086e3",
"body": "…gulation (#1518)\n\n* Add MakeValid trait for polygon repair via constrained Delaunay triangulation\n\nImplement the polygon repair algorithm described in:\n\n▎ Ledoux, H., Arroyo Ohori, K., and Meijers, M. (2014). A\n▎ triangulation-based approach to automatically repair GIS polygons.\n▎ Computers & Geosc\n[…]\n real code instead of\nduplicating it.\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\n\n---------\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Add MakeValid trait for polygon repair via constrained Delaunay trian…",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-04-03T21:34:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "10f14d700678d521b29287eab567fe2560fd1421",
"body": null,
"is_bot": false,
"headline": "update rand to 0.10.0 (#1519)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-04-03T21:27:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e2e7688ba1aabb55d5a743fb569426ca93e152d",
"body": "* Replace quadratic algorithms in delaunay triangulation\n\n1. Replace iterative intersection loop with sweep in triangulate_delaunay\nRewrite prepare_intersection_contraint to use the existing sweep-line\nIntersections iterator. Finds all segment intersections in a single\nO((n+m) log n) pass (previousl\n[…]\ner. The large polygon\n(norway_main) shows no measurable change since the sweep itself\ndominates.\n\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\n\n---------\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Replace quadratic algorithms in Delaunay triangulation (#1517)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-03-23T21:08:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a1a85968749b3589655776638b422a88727197ae",
"body": "NOTE: Currently a test in `stitch_triangulation` is failing.\nThis represents a bug in our stitch method, which depends on an\narbitrary ordering of the input triangles to produce valid output.\n\nWe've deprecated Stitch and it will eventually be removed.\n\n== Benches\n\nBenches have improved, even with th\n[…]\ntain a persistent EarCutter instance.\n2. Expose a way to pass in a(re-usable) outout buffer.\n3. Avoid twice allocating the input vertices\n - Lazily compute vertex iterator\n - Return dynamic \"getter\"",
"is_bot": false,
"headline": "Switch to earcut crate for performance improvement (#1508)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-03-20T16:05:17Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6f2603a5548adf43c949217f5921905fe09f54bb",
"body": "Ports all 16 test cases from https://gdal.org/en/latest/user/geometry_validity.html\ninto a new `gdal_test_cases` module, documenting where our error classifications\ndiffer from GDAL's (e.g. InteriorRingNotContainedInExteriorRing vs \"Self-intersection\",\nElementsTouchOnALine vs \"Self-intersection\", and auto-closed rings being valid).\n\nCo-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "Add GDAL geometry validity test cases (#1515)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-03-19T17:37:15Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "11e4bc5e1fd54514df9c1b009ac599fab2e64f0b",
"body": "stitch is actually quite a lot slower, even with our naive approach of\nconverting triangles to polygons.\n\nPlus it can produce invalid output depending on the given triangulation.\n\nBench output:\n\n stitch triangles time: [568.99 µs 571.78 µs 576.41 µs]\n\n union triangles via boolean ops\n time: [127.82 µs 128.79 µs 129.82 µs]",
"is_bot": false,
"headline": "deprecate stitch (#1514)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-03-19T00:38:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87a33e92b5d88d71cd8617a0543b4c91b3e1f88d",
"body": null,
"is_bot": false,
"headline": "Make geo-traits no-std (#1513)",
"author_name": "Samu",
"author_login": "scristobal",
"committed_at": "2026-03-17T19:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6e15a8b291c30211fb1b5ccf863c8820b2eb8db",
"body": "…ction (#1500)\n\n* GH-1470 Update i_overlay to 4.4, enable OGC-compliant polygon extraction\n\nBumps i_overlay from 4.0 to 4.4 and enables `OverlayOptions::ogc()` for all\nboolean operations. This ensures output polygons have connected interiors per\nISO 19125-1, fixing cases where holes sharing vertices\n[…]\nnk\n\nCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>\n\n* cargo fmt\n\n---------\n\nCo-authored-by: Claude Opus 4.6 <noreply@anthropic.com>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "GH-1470 - Update i_overlay to 4.4, enable OGC-compliant polygon extra…",
"author_name": "bretttully",
"author_login": "bretttully",
"committed_at": "2026-03-01T06:47:23Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "b3099a988743d8a303cc3797d957176efc6eea56",
"body": "* Add Triangle::unchecked_winding; route From<[IC; 3]> through new\n\n- Add Triangle::unchecked_winding(v1, v2, v3) for callers that have\n already verified CCW winding or don't care about winding order.\n This avoids the cross-product check paid by Triangle::new.\n- Fix From<[IC; 3]> to call Triangle:\n[…]\nly@anthropic.com>\n\n* Deprecate direct field access for Triangle\n\n* migrate away from deprecated triangle field access\n\n* changelog\n\n---------\n\nCo-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>",
"is_bot": false,
"headline": "consistent triangle orientation (#1510)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-03-01T06:36:27Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "6fea6e2fbd4627092af45dd81c712dec970de25b",
"body": "* earcutr yields triangles with CCW winding\n\n* add tests for RawTriangulation\n\n* Omit redunant \"closed\" coord from earcutr input\n\nThe output is topologically equivalent, but the \"start\" of the triangle\nchanges.\n\n* changelog\n\n* fixup doctests",
"is_bot": false,
"headline": "earcutr: cleanup input (#1507)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-03-01T04:38:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c94060ed364cdaaf0161e4bf1e037c2cefb9925",
"body": null,
"is_bot": false,
"headline": "fix bug in geo-traits triangle impl (#1509)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-02-27T22:48:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f19fc68a8811f8dfe0aaa8ad41e3a478bde1b8c1",
"body": "Polygons are kind of special - they aren't quite \"slice like\" in that\n\"exterior\" is different from interior, though some other geometry\nrepresentations represent them slice like.",
"is_bot": false,
"headline": "Add Index accessors for all geometries (except Polygons) (#1496)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-02-27T21:13:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "878048a2b2a789d20f25cd94cd29d67b48ec7baa",
"body": null,
"is_bot": false,
"headline": "chore: update float_next_after dependency (#1504)",
"author_name": "Yuri Astrakhan",
"author_login": "nyurik",
"committed_at": "2026-02-27T10:11:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "73009ef70bddbbc54b0687dff08ce6bb2bfc06ef",
"body": "* bump geo MSRV to 1.88, so we can update i_overlay\n\n* clippy fixes",
"is_bot": false,
"headline": "bump geo MSRV to 1.88, so we can update i_overlay (#1505)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2026-02-27T06:18:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e56c56174ad59debdbf2a85fec6bd5b63b674aa",
"body": null,
"is_bot": false,
"headline": "chore: update earcutr dependency (#1503)",
"author_name": "Yuri Astrakhan",
"author_login": "nyurik",
"committed_at": "2026-02-26T18:42:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed8726b1edd5d91e4817a022d68aa4b5a84de993",
"body": "… data (#1498)\n\nimprove performance for unsorted data\n\nCo-authored-by: cookiedan42 <git@cookiedan42.com>",
"is_bot": false,
"headline": "more representative benchmark for mp contains mp using shuffled input…",
"author_name": "Daniel",
"author_login": "cookiedan42",
"committed_at": "2026-02-06T01:11:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d30142e731d79172a63e845a263676b86ad557c",
"body": "* Fix incorrect open linestring distance computation\n\n* Add changelog entry for LineString distance fix",
"is_bot": false,
"headline": "Fix incorrect open linestring distance computation (#1499)",
"author_name": "Kristin Cowalcijk",
"author_login": "Kontinuation",
"committed_at": "2026-02-04T19:30:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0492e738a7199f4792cca5cb76e67bdfc7734074",
"body": "Adds the Voronoi trait with methods to compute Voronoi diagrams:\n\n- voronoi_edges(): Returns line segments from unconstrained Delaunay triangulation\n- voronoi_edges_with_params(): Same with configurable tolerance and clipping\n- voronoi_cells(): Returns Vec<Polygon<T>> with cells clipped to padded bo\n[…]\ngs.\n\nThis functionality requires a new geo-types release which incorporates the changes in #1490, and a corresponding bump to the geo-types version in geo\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Add Voronoi methods (#1487)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-01-20T22:02:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7489cc997c7d0fd94bbc4cc78ba59b97bc5f137d",
"body": "…tex type (#1490)\n\n* Split TriangulateDelaunay trait to support point collections\n\nNew trait structure:\n- TriangulateDelaunayUnconstrained: new trait with unconstrained triangulation methods only\n- TriangulateDelaunay: extends TriangulateDelaunayUnconstrained, adds constrained methods\n\nNew:\n- MultiP\n[…]\nine helper functions\n- Simplify triangulation_to_triangles since vertices are now Coord directly\n\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>\n\n---------\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Implement Spade HasPosition for Coord, use Coord as triangulation ver…",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-01-07T20:11:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "834f824cd53cf94b751ecedeb87841da47fd098b",
"body": "New trait structure:\n- TriangulateDelaunayUnconstrained: new trait with unconstrained triangulation methods only\n- TriangulateDelaunay: extends TriangulateDelaunayUnconstrained, adds constrained methods\n\nNew:\n- MultiPoint, Point, and &[Coord] get TriangulateDelaunayUnconstrained via the CoordsIter b\n[…]\nngulateDelaunay (constrained methods) because they don't implement LinesIter + Contains\n- Existing types like Polygon, Triangle, Rect etc. get both traits\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Split TriangulateDelaunay trait to support point collections (#1486)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2026-01-07T19:47:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8ec3dce2617a7894d6d6f08b3479e3ea7928d753",
"body": "This commit fixes the wasm build of geo by reducing the amount of\nenabled features for the rand crate to a subset that's wasm compatible\nby default. This requires putting some functionality of k-means behind\nfeature gates.\n\nThis commit also adds a CI check for wasm-builds.",
"is_bot": false,
"headline": "Fix WASM build (#1492)",
"author_name": "Georg Semmler",
"author_login": "weiznich",
"committed_at": "2026-01-06T20:01:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "befc8f57cf0051b3ff0540949e0bc96e65601f72",
"body": "* Amend the notes about MultiPolygon::unsigned_area\n\n* Simplify implementations\n\n* Go back to the fold implementation",
"is_bot": false,
"headline": "Amend the notes about MultiPolygon::unsigned_area (#1489)",
"author_name": "Dustin Carlino",
"author_login": "dabreegster",
"committed_at": "2026-01-06T14:03:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f97a7aa82bc12064e05bbdc962b073b902cfa339",
"body": null,
"is_bot": false,
"headline": "fix links to LineString (#1491)",
"author_name": "Jonas Pleyer",
"author_login": "jonaspleyer",
"committed_at": "2026-01-04T16:11:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca0a91b7f45c63e51d76d15e7a6086c426f2d518",
"body": "Signed-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Update docs and code to refer to renamed proj feature (#1485)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-12-27T06:54:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb2e0e8183dd9818f41d2f7e3e0d0147d0d7f4d5",
"body": "Co-authored-by: cookiedan42 <git@cookiedan42.com>",
"is_bot": false,
"headline": "faster upper bound for line-rect intersection (#1463)",
"author_name": "Daniel",
"author_login": "cookiedan42",
"committed_at": "2025-12-18T21:49:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "41b5d7c84ec6736dc5b363cf74a50ad8ead814a8",
"body": "* fix bug in linestring intersection when linestring is degenerate point\n\n* CoordinatePosition handles degenerate LineString\n\n* formatting\n\n* more degenerate testing\n\n---------\n\nCo-authored-by: cookiedan42 <git@cookiedan42.com>",
"is_bot": false,
"headline": "CoordinatePosition handles degenerate LineString (#1483)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-18T17:59:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76e542359382bcf5127bd830010346bd45639e9a",
"body": "…t (#1481)\n\nCo-authored-by: cookiedan42 <git@cookiedan42.com>",
"is_bot": false,
"headline": "fix bug in linestring intersection when linestring is degenerate poin…",
"author_name": "Daniel",
"author_login": "cookiedan42",
"committed_at": "2025-12-17T20:26:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9088790ed68d50890d20c81170e48cc78f6c0d8",
"body": null,
"is_bot": false,
"headline": "Update rand crate to 0.9 (#1479)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-16T01:18:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d01546799e77430f1032b768dc307bea40d08709",
"body": "Inspired by @wwaltersdavis in https://github.com/georust/geo/pull/1465",
"is_bot": false,
"headline": "Fix coordinate position on vertical boundary (#1475)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-15T18:14:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66d437b66cc220cb8262d9d1aa512eff32bdcb68",
"body": "When k-means++ initialisation selects data points as initial centroids,\npoints at those locations have upper_bound=0 in Hamerly's algorithm,\ncausing them to be incorrectly pruned from reassignment checks. This\ncould cause the algorithm to declare convergence on the first iteration\nwithout ever compu\n[…]\nmeans_three_clusters to use a fixed seed (42) for\n deterministic testing which should avoid intermittent failures from unlucky\n k-means++ initialisation\n\nSigned-off-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": false,
"headline": "Fix k-means premature convergence bug (#1473)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-12-15T18:03:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "70df13425aeaf2dd9d9d76d0b9e554423ca034b3",
"body": null,
"is_bot": false,
"headline": "quieter logging (#1474)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-11T20:56:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2682eba8d870e4d1efbbac8e0de86da5e6566b1",
"body": null,
"is_bot": false,
"headline": "Add an issue template (#1464)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-12-09T00:41:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "240f203818c978a87f3fe3376aa5e4155caf6634",
"body": null,
"is_bot": false,
"headline": "prepare for geo-0.32.0 release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-05T16:06:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2841bc339816258b247eee84bd004ed18e0df1d1",
"body": "Render some example geometries in SVG and show the output matrix rendered as a table.\n\nThis is the first time we've used SVG in an example. It's a bit verbose,\nbut I think it renders nicely.\n\nIf it's a thing we want to do more of, maybe we can come up with some\nmachinery to make it easier / DRY.",
"is_bot": false,
"headline": "improve de-9im docs (#1460)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-04T20:49:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01ebfd4701fa7fa8eae63b6c3bd4d65b41adae5d",
"body": null,
"is_bot": false,
"headline": "Harmonise lib.rs and README bullet list (#1462)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-12-04T19:04:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d4d2b5cacfb47670c4de947b6349830d7f65c2a",
"body": "* polygon scaling bench\n\n* docs\n\n* fixup docs\n\n---------\n\nCo-authored-by: cookiedan42 <git@cookiedan42.com>\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "polygon scaling bench (#1457)",
"author_name": "Daniel",
"author_login": "cookiedan42",
"committed_at": "2025-12-02T19:48:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29344c7e976f39da61f1eb50ffbb243ef280167f",
"body": "JTS::ConvexHull returns Point and Line types when the dimensionality\nallows it, whereas geo::ConvexHull always returns a Polygon.",
"is_bot": false,
"headline": "Add remaining JTS convex hull tests (#1459)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-02T19:48:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6a376b03e14b3a10631511886cfb624d5e2c3c2",
"body": "Covers base",
"is_bot": false,
"headline": "Merge pull request #1433 from cookiedan42/covers-base",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-12-02T12:51:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "760d9080cde4eb49e4b231a3f092e6353150094d",
"body": "…tions",
"is_bot": false,
"headline": "Implement basic trait of Covers and straightfoward derived implementa…",
"author_name": "cookiedan42",
"author_login": null,
"committed_at": "2025-12-02T12:20:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5efc762d9ab2520f55ebc6b703234e9f77cb417d",
"body": null,
"is_bot": false,
"headline": "Merge branch 'release/geo-types-0.7.18'",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-12-01T23:29:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87b70cc53c3fd7a9750f40460cd427e656a0f4fa",
"body": "…linestring\n\nHandle an edge case in linestring contains linestring",
"is_bot": false,
"headline": "Merge pull request #1454 from cookiedan42/bugfix/linestring-contains-…",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-27T16:59:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb649bb5021d5f3f04b72e10fe8cf13e60907dbb",
"body": "if a segment is degenerate and sits on start or end, but there are other non-degenerate, contains will no longer false negative",
"is_bot": false,
"headline": "Handle an edge case in linestring contains linestring",
"author_name": "cookiedan42",
"author_login": null,
"committed_at": "2025-11-27T07:12:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abc4bcdd35def6ab8aeafb983b718a7a4acf6d97",
"body": "…pdates-76468cb07f\n\nBump actions/checkout from 5 to 6 in the gha-updates group",
"is_bot": false,
"headline": "Merge pull request #1451 from georust/dependabot/github_actions/gha-u…",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-26T17:56:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c75e9c717cdc4bcbb4ef8fb1956625b3a7fabc3",
"body": null,
"is_bot": false,
"headline": "prepare for geo-types-0.7.18 release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-26T01:08:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a5ef205579be66116c5101fe4ac5a6fd6c4898c2",
"body": "impl Serialize for `AABB<Coord>` and `AABB<Point>`",
"is_bot": false,
"headline": "Merge pull request #1450 from georust/mkirk/serialize-aabb-coord",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-25T21:17:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "190bf5acdce20e2a1d3b0dbe4e3f8ce51893896e",
"body": "Use concaveman method for concave hull",
"is_bot": false,
"headline": "Merge pull request #1442 from wwaltersdavis/concaveman",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-25T21:13:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5f0a33583a670dad6f89af86778dc9a72142d16",
"body": null,
"is_bot": false,
"headline": "Use concaveman method for concave hull",
"author_name": "wwaltersdavis",
"author_login": "wwaltersdavis",
"committed_at": "2025-11-25T20:59:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6bc6b6337ddb1216321d808adcc8a8703689770e",
"body": "Bumps the gha-updates group with 1 update: [actions/checkout](https://github.com/actions/checkout).\n\n\nUpdates `actions/checkout` from 5 to 6\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://g\n[…]\nckout\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n dependency-group: gha-updates\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "Bump actions/checkout from 5 to 6 in the gha-updates group",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-11-24T07:45:02Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3c57d08c46bb17406d88885554cde7cc278f3edd",
"body": null,
"is_bot": false,
"headline": "impl Serialize for AABB<Coord> and AABB<Point>",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-21T19:07:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "069d88f4284d8d256f5a08989038e6580d04ee15",
"body": "improve linestring contain coord perf",
"is_bot": false,
"headline": "Merge pull request #1440 from cookiedan42/linestring-contains-coord",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2025-11-21T12:08:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3e2e7fe105ab8a901e7c3d9f41b95ad740c3970",
"body": "Rename features to take advantage of `dep:` syntax",
"is_bot": false,
"headline": "Merge pull request #1447 from georust/mkirk/deprecate-use-features",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-21T01:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e6c4d839d06a906b4ea74f114c0171e8f9166c8c",
"body": null,
"is_bot": false,
"headline": "Make CI happy. This is kind of sad. I'm open to suggestions",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-20T17:37:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8be011c7a671d400122f570e3398ccfe4ab81f50",
"body": "A million years ago, rust introduced the `dep:` syntax to disambiguate\nbetween \"the optional crate called serde\" and \"the feature called\nserde\", we're finally taking advantage of it here.\n\nI've also attempted to provide some kind of compiler warning to allow\npeople to migrate to the new feature flag\n[…]\nforward thinking to avoid a breaking change in the case we needed\nto enable any accessory crates for the `proj` feature. We can safely do\nthat now if/when we need to without causing a breaking change.",
"is_bot": false,
"headline": "Rename features to take advantage of `dep:` syntax",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-20T01:08:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "92ed149ba474abaaa6cb6b8b34a896dade33cd34",
"body": "Avoid `atan2` in `minimum_bounding_rect` (take 2)",
"is_bot": false,
"headline": "Merge pull request #1446 from georust/mbr-variant",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-20T00:33:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edf0948defa07f6e4d2f6d86c37d194c08396c09",
"body": "Add macro for benchmarks to compare Traits against Relate",
"is_bot": false,
"headline": "Merge pull request #1439 from cookiedan42/trait_relate_bench_macro",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-11-18T14:06:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67a2090b58ac0b744ae3d1123002393225a25729",
"body": null,
"is_bot": false,
"headline": "add macro, apply to Contains benchmark",
"author_name": "cookiedan42",
"author_login": null,
"committed_at": "2025-11-17T20:16:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2af83e5f95bace319518430eee9ab11ba9c16c0f",
"body": null,
"is_bot": false,
"headline": "Optimize minimum_rotated_rect",
"author_name": "Laurențiu Nicola",
"author_login": "lnicola",
"committed_at": "2025-11-14T15:15:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f181c670bf294a2ae92f3cfd2b159f088a0a3649",
"body": null,
"is_bot": false,
"headline": "Add minimum rotated rect bench",
"author_name": "Laurențiu Nicola",
"author_login": "lnicola",
"committed_at": "2025-11-13T17:40:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b69b779a93fa85791c29355ca480034f465a0da9",
"body": "Consolidate benchmarks into `geo-benches` crate",
"is_bot": false,
"headline": "Merge pull request #1445 from georust/bench",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-12T17:20:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6e58b4acedd470cc4fdc9cb836d19755d002c5ac",
"body": null,
"is_bot": false,
"headline": "Update geo-benches/Cargo.toml",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T01:34:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cacd41eeee46cb24db081a24d6bd571f90e0a97b",
"body": null,
"is_bot": false,
"headline": "publish = false",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T00:46:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42382f4bb8354081ad96557a48dc5d87ff242dce",
"body": null,
"is_bot": false,
"headline": "fmt",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T00:43:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5045628dafeff10e1fea78172d5fffaead466158",
"body": null,
"is_bot": false,
"headline": "Consolidate deps",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T00:38:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4e46215952bd5659136f7aaece626c6d67b2ec6",
"body": null,
"is_bot": false,
"headline": "Compile geo-benches",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T00:29:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abf218a0d339317cd69d17877b69d1e50fcb3a66",
"body": "This pull request refactors the benchmark setup by consolidating all benchmarks into a single `geo-benches` crate.\n\n- Renamed `geo-bool-ops-benches` to `geo-benches`.\n- Moved all benchmarks from `geo/benches` into `geo-benches/src`.\n- Updated all `Cargo.toml` files to reflect the new crate name and structure.\n- Removed the now-unused `benches` directory from the `geo` crate.\n- Removed unused `criterion` and `rand_distr` dev-dependencies from the `geo` crate.",
"is_bot": false,
"headline": "Consolidate benchmarks into `geo-benches` crate",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2025-11-07T00:24:49Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 2,
"commits_last_year": 195,
"latest_release_at": "2021-02-25T23:14:16Z",
"latest_release_tag": "0.17.1",
"releases_from_tags": true,
"days_since_last_push": 0,
"active_weeks_last_year": 39,
"days_since_latest_release": 1984,
"mean_days_between_releases": 734.4
},
"community": {
"has_readme": true,
"has_license": true,
"readme_badges": {
"hosts": [
"shields.io"
],
"total": 4,
"header": 4,
"collected": true,
"has_inspect_badge": false
},
"has_description": true,
"has_contributing": true,
"health_percentage": 87,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "geo",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"geo",
"geography",
"geospatial",
"gis",
"science::geo"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/geo",
"is_deprecated": false,
"latest_version": "0.33.1",
"repository_url": "https://github.com/georust/geo",
"versions_count": 92,
"total_downloads": 20169181,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 1376566,
"first_published_at": "2015-01-16T01:12:13.230366Z",
"latest_published_at": "2026-04-20T21:01:19.022915Z",
"latest_version_yanked": false,
"days_since_latest_publish": 104
},
{
"name": "geo-types",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"geo",
"geography",
"geospatial",
"gis"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/geo-types",
"is_deprecated": false,
"latest_version": "0.7.20",
"repository_url": "https://github.com/georust/geo",
"versions_count": 35,
"total_downloads": 23876708,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 1682433,
"first_published_at": "2018-05-03T11:26:30.869236Z",
"latest_published_at": "2026-08-02T18:34:27.887055Z",
"latest_version_yanked": false,
"days_since_latest_publish": 0
},
{
"name": "geo-traits",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"geo",
"geography",
"geospatial",
"gis"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/geo-traits",
"is_deprecated": false,
"latest_version": "0.3.0",
"repository_url": "https://github.com/georust/geo",
"versions_count": 5,
"total_downloads": 2150360,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 436111,
"first_published_at": "2023-06-16T00:23:32.312518Z",
"latest_published_at": "2025-05-08T16:01:25.066974Z",
"latest_version_yanked": false,
"days_since_latest_publish": 451
}
]
},
"popularity": {
"forks": 263,
"stars": 1903,
"watchers": 36,
"fork_history": {
"days": [
{
"date": "2015-10-22",
"count": 1
},
{
"date": "2015-12-03",
"count": 1
},
{
"date": "2016-03-04",
"count": 1
},
{
"date": "2016-05-03",
"count": 2
},
{
"date": "2016-05-12",
"count": 1
},
{
"date": "2016-06-03",
"count": 1
},
{
"date": "2016-08-02",
"count": 1
},
{
"date": "2016-08-04",
"count": 1
},
{
"date": "2016-10-08",
"count": 1
},
{
"date": "2016-10-12",
"count": 1
},
{
"date": "2016-10-28",
"count": 1
},
{
"date": "2017-02-17",
"count": 1
},
{
"date": "2017-02-19",
"count": 1
},
{
"date": "2017-05-05",
"count": 1
},
{
"date": "2017-06-25",
"count": 1
},
{
"date": "2017-07-27",
"count": 1
},
{
"date": "2017-08-08",
"count": 1
},
{
"date": "2017-08-23",
"count": 1
},
{
"date": "2017-09-01",
"count": 1
},
{
"date": "2018-01-29",
"count": 1
},
{
"date": "2018-02-01",
"count": 1
},
{
"date": "2018-03-11",
"count": 1
},
{
"date": "2018-03-13",
"count": 1
},
{
"date": "2018-04-04",
"count": 1
},
{
"date": "2018-05-01",
"count": 1
},
{
"date": "2018-05-15",
"count": 1
},
{
"date": "2018-06-04",
"count": 1
},
{
"date": "2018-06-18",
"count": 1
},
{
"date": "2018-07-02",
"count": 1
},
{
"date": "2018-08-05",
"count": 1
},
{
"date": "2018-08-07",
"count": 1
},
{
"date": "2018-10-10",
"count": 1
},
{
"date": "2018-10-12",
"count": 1
},
{
"date": "2018-11-01",
"count": 1
},
{
"date": "2018-12-17",
"count": 1
},
{
"date": "2019-02-25",
"count": 1
},
{
"date": "2019-04-01",
"count": 1
},
{
"date": "2019-04-09",
"count": 1
},
{
"date": "2019-07-03",
"count": 1
},
{
"date": "2019-07-26",
"count": 1
},
{
"date": "2019-08-14",
"count": 1
},
{
"date": "2019-08-24",
"count": 1
},
{
"date": "2019-08-27",
"count": 1
},
{
"date": "2019-09-09",
"count": 1
},
{
"date": "2019-09-21",
"count": 1
},
{
"date": "2019-09-23",
"count": 1
},
{
"date": "2019-10-04",
"count": 1
},
{
"date": "2019-12-24",
"count": 1
},
{
"date": "2020-01-07",
"count": 1
},
{
"date": "2020-01-21",
"count": 1
},
{
"date": "2020-03-15",
"count": 1
},
{
"date": "2020-03-21",
"count": 1
},
{
"date": "2020-03-30",
"count": 1
},
{
"date": "2020-05-08",
"count": 1
},
{
"date": "2020-06-20",
"count": 1
},
{
"date": "2020-07-20",
"count": 2
},
{
"date": "2020-07-25",
"count": 1
},
{
"date": "2020-07-26",
"count": 1
},
{
"date": "2020-08-05",
"count": 1
},
{
"date": "2020-08-23",
"count": 1
},
{
"date": "2020-10-04",
"count": 1
},
{
"date": "2020-10-22",
"count": 1
},
{
"date": "2020-11-12",
"count": 1
},
{
"date": "2020-12-02",
"count": 1
},
{
"date": "2020-12-28",
"count": 1
},
{
"date": "2021-01-19",
"count": 1
},
{
"date": "2021-01-29",
"count": 1
},
{
"date": "2021-02-24",
"count": 1
},
{
"date": "2021-03-03",
"count": 1
},
{
"date": "2021-03-04",
"count": 1
},
{
"date": "2021-03-06",
"count": 1
},
{
"date": "2021-03-09",
"count": 1
},
{
"date": "2021-03-19",
"count": 1
},
{
"date": "2021-04-08",
"count": 1
},
{
"date": "2021-05-05",
"count": 1
},
{
"date": "2021-06-13",
"count": 1
},
{
"date": "2021-07-13",
"count": 1
},
{
"date": "2021-07-29",
"count": 1
},
{
"date": "2021-08-05",
"count": 1
},
{
"date": "2021-08-12",
"count": 1
},
{
"date": "2021-08-15",
"count": 3
},
{
"date": "2021-08-27",
"count": 1
},
{
"date": "2021-08-31",
"count": 1
},
{
"date": "2021-10-19",
"count": 2
},
{
"date": "2021-11-25",
"count": 1
},
{
"date": "2021-11-26",
"count": 1
},
{
"date": "2021-11-27",
"count": 1
},
{
"date": "2021-12-23",
"count": 1
},
{
"date": "2022-01-22",
"count": 3
},
{
"date": "2022-02-04",
"count": 1
},
{
"date": "2022-02-09",
"count": 1
},
{
"date": "2022-02-20",
"count": 1
},
{
"date": "2022-02-21",
"count": 1
},
{
"date": "2022-03-08",
"count": 1
},
{
"date": "2022-03-26",
"count": 1
},
{
"date": "2022-04-24",
"count": 1
},
{
"date": "2022-04-26",
"count": 1
},
{
"date": "2022-06-05",
"count": 1
},
{
"date": "2022-06-25",
"count": 1
},
{
"date": "2022-06-28",
"count": 1
},
{
"date": "2022-06-30",
"count": 1
},
{
"date": "2022-08-01",
"count": 1
},
{
"date": "2022-08-16",
"count": 2
},
{
"date": "2022-08-29",
"count": 2
},
{
"date": "2022-09-13",
"count": 1
},
{
"date": "2022-10-01",
"count": 1
},
{
"date": "2022-10-04",
"count": 1
},
{
"date": "2022-10-17",
"count": 1
},
{
"date": "2022-10-29",
"count": 1
},
{
"date": "2022-11-05",
"count": 1
},
{
"date": "2022-11-08",
"count": 1
},
{
"date": "2022-11-09",
"count": 1
},
{
"date": "2022-11-15",
"count": 1
},
{
"date": "2022-11-17",
"count": 1
},
{
"date": "2022-11-20",
"count": 1
},
{
"date": "2022-12-09",
"count": 1
},
{
"date": "2022-12-11",
"count": 1
},
{
"date": "2022-12-22",
"count": 1
},
{
"date": "2022-12-28",
"count": 1
},
{
"date": "2022-12-29",
"count": 1
},
{
"date": "2023-01-06",
"count": 1
},
{
"date": "2023-01-11",
"count": 1
},
{
"date": "2023-01-23",
"count": 1
},
{
"date": "2023-01-27",
"count": 1
},
{
"date": "2023-02-16",
"count": 1
},
{
"date": "2023-02-17",
"count": 1
},
{
"date": "2023-02-23",
"count": 1
},
{
"date": "2023-02-25",
"count": 1
},
{
"date": "2023-03-06",
"count": 1
},
{
"date": "2023-03-08",
"count": 1
},
{
"date": "2023-04-05",
"count": 1
},
{
"date": "2023-04-13",
"count": 1
},
{
"date": "2023-04-19",
"count": 1
},
{
"date": "2023-04-30",
"count": 1
},
{
"date": "2023-06-07",
"count": 1
},
{
"date": "2023-06-09",
"count": 1
},
{
"date": "2023-06-21",
"count": 1
},
{
"date": "2023-06-26",
"count": 1
},
{
"date": "2023-07-05",
"count": 2
},
{
"date": "2023-07-11",
"count": 1
},
{
"date": "2023-07-26",
"count": 1
},
{
"date": "2023-08-07",
"count": 2
},
{
"date": "2023-08-10",
"count": 1
},
{
"date": "2023-08-28",
"count": 1
},
{
"date": "2023-09-07",
"count": 1
},
{
"date": "2023-09-15",
"count": 1
},
{
"date": "2023-10-01",
"count": 1
},
{
"date": "2023-10-12",
"count": 1
},
{
"date": "2023-10-22",
"count": 1
},
{
"date": "2023-11-19",
"count": 1
},
{
"date": "2023-11-20",
"count": 1
},
{
"date": "2023-11-21",
"count": 1
},
{
"date": "2023-12-23",
"count": 1
},
{
"date": "2024-01-10",
"count": 1
},
{
"date": "2024-01-20",
"count": 1
},
{
"date": "2024-02-05",
"count": 1
},
{
"date": "2024-02-22",
"count": 1
},
{
"date": "2024-02-25",
"count": 1
},
{
"date": "2024-03-08",
"count": 1
},
{
"date": "2024-03-12",
"count": 1
},
{
"date": "2024-03-13",
"count": 1
},
{
"date": "2024-04-05",
"count": 1
},
{
"date": "2024-06-24",
"count": 1
},
{
"date": "2024-06-25",
"count": 1
},
{
"date": "2024-07-03",
"count": 1
},
{
"date": "2024-07-08",
"count": 1
},
{
"date": "2024-07-17",
"count": 1
},
{
"date": "2024-07-25",
"count": 1
},
{
"date": "2024-08-10",
"count": 1
},
{
"date": "2024-08-25",
"count": 1
},
{
"date": "2024-09-17",
"count": 1
},
{
"date": "2024-09-27",
"count": 1
},
{
"date": "2024-10-02",
"count": 1
},
{
"date": "2024-10-24",
"count": 1
},
{
"date": "2024-11-25",
"count": 1
},
{
"date": "2024-12-02",
"count": 1
},
{
"date": "2024-12-20",
"count": 1
},
{
"date": "2025-01-02",
"count": 1
},
{
"date": "2025-01-10",
"count": 1
},
{
"date": "2025-02-08",
"count": 2
},
{
"date": "2025-02-25",
"count": 1
},
{
"date": "2025-02-27",
"count": 1
},
{
"date": "2025-03-20",
"count": 1
},
{
"date": "2025-03-27",
"count": 1
},
{
"date": "2025-04-14",
"count": 1
},
{
"date": "2025-04-18",
"count": 1
},
{
"date": "2025-05-15",
"count": 1
},
{
"date": "2025-06-17",
"count": 1
},
{
"date": "2025-06-18",
"count": 2
},
{
"date": "2025-07-01",
"count": 1
},
{
"date": "2025-07-06",
"count": 1
},
{
"date": "2025-07-07",
"count": 1
},
{
"date": "2025-07-12",
"count": 1
},
{
"date": "2025-07-27",
"count": 1
},
{
"date": "2025-07-30",
"count": 1
},
{
"date": "2025-08-02",
"count": 1
},
{
"date": "2025-08-06",
"count": 1
},
{
"date": "2025-08-08",
"count": 1
},
{
"date": "2025-08-25",
"count": 2
},
{
"date": "2025-09-08",
"count": 1
},
{
"date": "2025-09-12",
"count": 1
},
{
"date": "2025-09-22",
"count": 1
},
{
"date": "2025-10-02",
"count": 1
},
{
"date": "2025-10-07",
"count": 1
},
{
"date": "2025-10-25",
"count": 1
},
{
"date": "2025-11-03",
"count": 1
},
{
"date": "2025-11-17",
"count": 1
},
{
"date": "2025-12-05",
"count": 1
},
{
"date": "2025-12-08",
"count": 1
},
{
"date": "2025-12-18",
"count": 1
},
{
"date": "2025-12-20",
"count": 1
},
{
"date": "2025-12-21",
"count": 1
},
{
"date": "2025-12-22",
"count": 1
},
{
"date": "2026-01-03",
"count": 1
},
{
"date": "2026-01-06",
"count": 1
},
{
"date": "2026-01-07",
"count": 1
},
{
"date": "2026-01-20",
"count": 1
},
{
"date": "2026-02-03",
"count": 1
},
{
"date": "2026-02-24",
"count": 1
},
{
"date": "2026-02-28",
"count": 1
},
{
"date": "2026-03-13",
"count": 1
},
{
"date": "2026-03-15",
"count": 1
},
{
"date": "2026-03-27",
"count": 1
},
{
"date": "2026-03-28",
"count": 1
},
{
"date": "2026-03-31",
"count": 2
},
{
"date": "2026-04-20",
"count": 1
},
{
"date": "2026-04-23",
"count": 1
},
{
"date": "2026-04-27",
"count": 1
},
{
"date": "2026-04-28",
"count": 1
},
{
"date": "2026-05-03",
"count": 1
},
{
"date": "2026-05-05",
"count": 1
},
{
"date": "2026-05-06",
"count": 1
},
{
"date": "2026-05-28",
"count": 1
},
{
"date": "2026-06-09",
"count": 1
},
{
"date": "2026-06-14",
"count": 1
},
{
"date": "2026-06-17",
"count": 1
},
{
"date": "2026-06-20",
"count": 1
},
{
"date": "2026-06-24",
"count": 1
},
{
"date": "2026-07-03",
"count": 1
},
{
"date": "2026-07-04",
"count": 1
},
{
"date": "2026-07-18",
"count": 1
},
{
"date": "2026-07-19",
"count": 1
},
{
"date": "2026-07-22",
"count": 1
},
{
"date": "2026-07-27",
"count": 1
}
],
"complete": true,
"collected": 259,
"total_forks": 263
},
"star_history": null,
"open_issues_and_prs": 117
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml",
"geo-benches/Cargo.toml",
"geo-test-fixtures/Cargo.toml",
"geo-traits/Cargo.toml",
"geo-types/Cargo.toml",
"geo/Cargo.toml",
"geo/fuzz/Cargo.toml",
"jts-test-runner/Cargo.toml"
],
"largest_source_bytes": 64080,
"source_files_sampled": 319,
"oversized_source_files": 2,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml",
"geo-benches/Cargo.toml",
"geo-test-fixtures/Cargo.toml",
"geo-traits/Cargo.toml",
"geo-types/Cargo.toml",
"geo/Cargo.toml",
"jts-test-runner/Cargo.toml"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [
{
"name": "tar",
"direct": false,
"version": "0.4.40",
"severity": "high",
"ecosystem": "crates",
"cvss_score": 8.1,
"advisory_ids": [
"GHSA-3pv8-6f4r-ffg2",
"GHSA-gchp-q4r4-x4ff",
"GHSA-j4xf-2g29-59ph",
"RUSTSEC-2026-0067",
"RUSTSEC-2026-0068"
],
"fixed_version": "0.4.46",
"advisory_count": 5,
"oldest_advisory_days": 136
},
{
"name": "atty",
"direct": false,
"version": "0.2.14",
"severity": "low",
"ecosystem": "crates",
"cvss_score": null,
"advisory_ids": [
"GHSA-g98v-hv3f-hcfr",
"RUSTSEC-2021-0145",
"RUSTSEC-2024-0375"
],
"fixed_version": null,
"advisory_count": 3,
"oldest_advisory_days": 1855
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"low": 1,
"high": 1
},
"advisory_count": 8,
"affected_count": 2,
"assessed_count": 76,
"malicious_count": 0,
"assessed_package": "crates:geo@0.33.1",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "anyhow",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.57"
},
{
"name": "approx",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": ">= 0.4.0, < 0.6.0"
},
{
"name": "criterion",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "geo",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "geo-booleanop",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3.2"
},
{
"name": "geo-test-fixtures",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "geo-types",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "geojson",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.24.0"
},
{
"name": "glob",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.3.0"
},
{
"name": "gt_prev",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6.2"
},
{
"name": "jts-test-runner",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "log",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.11"
},
{
"name": "num-traits",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "pretty_env_logger",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4"
},
{
"name": "rand",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.10.0"
},
{
"name": "rand_distr",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6.0"
},
{
"name": "rstar",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.13.0"
},
{
"name": "serde",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.137"
},
{
"name": "serde_derive",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.137"
},
{
"name": "serde_json",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.81"
},
{
"name": "wkt",
"manifest": "geo-benches/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.14.0"
},
{
"name": "wkt",
"manifest": "geo-test-fixtures/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.14.0"
},
{
"name": "geo-types",
"manifest": "geo-test-fixtures/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "geo",
"manifest": "geo-test-fixtures/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "geo-types",
"manifest": "geo-traits/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.7.17"
},
{
"name": "rayon",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.10.0"
},
{
"name": "approx",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": ">= 0.4.0, < 0.6.0"
},
{
"name": "arbitrary",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.2.0"
},
{
"name": "num-traits",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "rstar_0_8",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.8"
},
{
"name": "rstar_0_9",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.9"
},
{
"name": "rstar_0_10",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.10"
},
{
"name": "rstar_0_11",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.11"
},
{
"name": "rstar_0_12",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.12"
},
{
"name": "rstar_0_13",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.13"
},
{
"name": "serde",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1"
},
{
"name": "spade_2",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2"
},
{
"name": "thiserror",
"manifest": "geo-types/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0.19"
},
{
"name": "earcut",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.11"
},
{
"name": "spade",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.10.0"
},
{
"name": "float_next_after",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0.0"
},
{
"name": "geo-types",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.7.19"
},
{
"name": "geographiclib-rs",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2.3"
},
{
"name": "log",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.11"
},
{
"name": "num-traits",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "proj",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.31.0"
},
{
"name": "robust",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.1.0"
},
{
"name": "rstar",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.13.0"
},
{
"name": "serde",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "thiserror",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0.19"
},
{
"name": "i_overlay",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "4.5.1, < 4.6.0"
},
{
"name": "sif-itree",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.0"
},
{
"name": "rand",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.10.0"
},
{
"name": "rand_pcg",
"manifest": "geo/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.10.1"
},
{
"name": "approx",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": ">= 0.4.0, < 0.6.0"
},
{
"name": "geo",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": null
},
{
"name": "include_dir",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.7.2"
},
{
"name": "log",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.4.14"
},
{
"name": "serde",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0.105"
},
{
"name": "serde-xml-rs",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.6.0"
},
{
"name": "thiserror",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0.19"
},
{
"name": "wkt",
"manifest": "jts-test-runner/Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.14.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "anyhow",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "approx",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "arbitrary",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "criterion",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "earcut",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "float_next_after",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "geo-booleanop",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "geo-types",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "geographiclib-rs",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "geojson",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "glob",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "include_dir",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "log",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "num-traits",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "pretty_env_logger",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "proj",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand_distr",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand_pcg",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rayon",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "robust",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "rstar",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde-xml-rs",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_derive",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_json",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "sif-itree",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "spade",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "thiserror",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "wkt",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "libfuzzer-sys",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 31,
"direct_count": 30,
"indirect_count": 1
}
},
"maintainership": {
"issues": {
"open_prs": 21,
"merged_prs": 884,
"open_issues": 96,
"closed_ratio": 0.798,
"closed_issues": 380,
"closed_unmerged_prs": 165
},
"bus_factor": 3,
"bot_contributors": 3,
"top_contributors": [
{
"type": "User",
"login": "michaelkirk",
"commits": 647,
"avatar_url": "https://avatars.githubusercontent.com/u/217057?v=4"
},
{
"type": "User",
"login": "frewsxcv",
"commits": 581,
"avatar_url": "https://avatars.githubusercontent.com/u/416575?v=4"
},
{
"type": "User",
"login": "urschrei",
"commits": 500,
"avatar_url": "https://avatars.githubusercontent.com/u/131862?v=4"
},
{
"type": "User",
"login": "rmanoka",
"commits": 128,
"avatar_url": "https://avatars.githubusercontent.com/u/5672629?v=4"
},
{
"type": "User",
"login": "nyurik",
"commits": 75,
"avatar_url": "https://avatars.githubusercontent.com/u/1641515?v=4"
},
{
"type": "User",
"login": "JasmineLowen",
"commits": 74,
"avatar_url": "https://avatars.githubusercontent.com/u/26892280?v=4"
},
{
"type": "User",
"login": "martinfrances107",
"commits": 69,
"avatar_url": "https://avatars.githubusercontent.com/u/1259969?v=4"
},
{
"type": "User",
"login": "kylebarron",
"commits": 53,
"avatar_url": "https://avatars.githubusercontent.com/u/15164633?v=4"
},
{
"type": "User",
"login": "JosiahParry",
"commits": 43,
"avatar_url": "https://avatars.githubusercontent.com/u/13534508?v=4"
},
{
"type": "User",
"login": "mbattifarano",
"commits": 25,
"avatar_url": "https://avatars.githubusercontent.com/u/1844175?v=4"
}
],
"contributors_sampled": 97,
"top_contributor_share": 0.243
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"test.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 8,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "29 out of 29 merged PRs checked by a CI test -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 10,
"reason": "all changesets reviewed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 73 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 10,
"reason": "project is fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 9,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "24 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "6d886dab783edbf5fab58c01540c7e8c7afdc00b",
"ran_at": "2026-08-02T23:16:20Z",
"aggregate_score": 7.1,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"recent_prs": {
"merged_7d": 3,
"decided_7d": 5,
"merged_30d": 16,
"authors_30d": 11,
"decided_30d": 19,
"sample_size": 60,
"window_days": 30,
"sample_exhausted": false,
"authors_probed_30d": 11,
"newcomer_merged_30d": 6,
"bot_prs_excluded_30d": 0,
"newcomer_authors_30d": 5,
"newcomer_decided_30d": 8
},
"ci_last_run_at": "2026-08-02T18:37:37Z",
"oldest_open_prs": [
{
"number": 1115,
"created_at": "2023-11-17T04:26:40Z",
"last_comment_at": "2024-01-19T01:35:49Z",
"last_comment_author": "frewsxcv"
},
{
"number": 1153,
"created_at": "2024-02-22T02:38:00Z",
"last_comment_at": "2025-10-01T20:51:04Z",
"last_comment_author": "michaelkirk"
},
{
"number": 1334,
"created_at": "2025-03-22T00:49:44Z",
"last_comment_at": "2025-06-11T06:15:51Z",
"last_comment_author": "bennjii"
},
{
"number": 1366,
"created_at": "2025-06-18T08:44:31Z",
"last_comment_at": "2025-06-27T17:26:23Z",
"last_comment_author": "MrFantOlas"
},
{
"number": 1400,
"created_at": "2025-08-13T21:39:35Z",
"last_comment_at": "2025-08-14T16:58:22Z",
"last_comment_author": "kylebarron"
},
{
"number": 1441,
"created_at": "2025-10-25T09:34:43Z",
"last_comment_at": "2025-11-22T02:33:19Z",
"last_comment_author": "kylebarron"
},
{
"number": 1480,
"created_at": "2025-12-17T12:29:38Z",
"last_comment_at": "2026-01-07T19:04:15Z",
"last_comment_author": "michaelkirk"
},
{
"number": 1488,
"created_at": "2025-12-28T18:17:57Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1495,
"created_at": "2026-01-16T09:33:33Z",
"last_comment_at": "2026-01-16T09:38:09Z",
"last_comment_author": "cookiedan42"
},
{
"number": 1546,
"created_at": "2026-06-15T22:24:38Z",
"last_comment_at": "2026-07-29T22:08:23Z",
"last_comment_author": "mikwielgus"
},
{
"number": 1556,
"created_at": "2026-07-04T15:01:52Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1557,
"created_at": "2026-07-08T13:18:26Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1561,
"created_at": "2026-07-21T13:42:59Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1568,
"created_at": "2026-07-27T13:00:33Z",
"last_comment_at": "2026-07-27T13:06:55Z",
"last_comment_author": "michaelkirk"
},
{
"number": 1571,
"created_at": "2026-07-29T22:56:59Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1572,
"created_at": "2026-07-31T09:39:51Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1573,
"created_at": "2026-07-31T09:39:54Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1574,
"created_at": "2026-07-31T09:39:56Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1575,
"created_at": "2026-07-31T09:39:58Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 1576,
"created_at": "2026-07-31T09:40:00Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-08-02T18:35:11Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 4,
"created_at": "2015-01-24T13:24:51Z",
"last_comment_at": "2015-03-25T04:04:09Z",
"last_comment_author": "frewsxcv"
},
{
"number": 5,
"created_at": "2015-01-25T14:25:48Z",
"last_comment_at": "2022-02-22T06:28:14Z",
"last_comment_author": "nyurik"
},
{
"number": 15,
"created_at": "2015-10-22T12:24:50Z",
"last_comment_at": "2024-09-29T18:40:01Z",
"last_comment_author": "kylebarron"
},
{
"number": 32,
"created_at": "2016-05-30T08:04:42Z",
"last_comment_at": "2018-03-14T22:52:40Z",
"last_comment_author": "urschrei"
},
{
"number": 56,
"created_at": "2016-08-07T14:20:35Z",
"last_comment_at": "2017-07-26T21:03:37Z",
"last_comment_author": "frewsxcv"
},
{
"number": 73,
"created_at": "2016-10-12T03:48:14Z",
"last_comment_at": "2018-04-15T00:07:15Z",
"last_comment_author": "frewsxcv"
},
{
"number": 206,
"created_at": "2018-04-21T13:13:17Z",
"last_comment_at": "2018-04-21T15:24:01Z",
"last_comment_author": "urschrei"
},
{
"number": 225,
"created_at": "2018-05-15T14:49:41Z",
"last_comment_at": "2021-07-13T15:23:30Z",
"last_comment_author": "michaelkirk"
},
{
"number": 248,
"created_at": "2018-06-04T01:13:23Z",
"last_comment_at": "2023-12-17T14:21:36Z",
"last_comment_author": "urschrei"
},
{
"number": 289,
"created_at": "2018-07-01T23:41:19Z",
"last_comment_at": "2025-12-03T00:09:46Z",
"last_comment_author": "michaelkirk"
},
{
"number": 353,
"created_at": "2019-04-12T14:36:52Z",
"last_comment_at": "2020-08-25T20:14:18Z",
"last_comment_author": "PayasR"
},
{
"number": 364,
"created_at": "2019-05-26T20:22:06Z",
"last_comment_at": "2020-09-07T22:45:37Z",
"last_comment_author": "urschrei"
},
{
"number": 378,
"created_at": "2019-08-20T17:22:08Z",
"last_comment_at": "2019-08-25T00:49:31Z",
"last_comment_author": "nevi-me"
},
{
"number": 414,
"created_at": "2020-01-17T22:56:16Z",
"last_comment_at": "2023-01-24T01:12:37Z",
"last_comment_author": "frewsxcv"
},
{
"number": 434,
"created_at": "2020-03-30T03:35:58Z",
"last_comment_at": "2020-03-31T13:12:05Z",
"last_comment_author": "urschrei"
},
{
"number": 464,
"created_at": "2020-05-17T15:15:24Z",
"last_comment_at": "2020-05-17T15:28:31Z",
"last_comment_author": "frewsxcv"
},
{
"number": 512,
"created_at": "2020-09-19T14:37:15Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 529,
"created_at": "2020-11-09T18:28:37Z",
"last_comment_at": "2020-11-09T18:34:48Z",
"last_comment_author": "michaelkirk"
},
{
"number": 531,
"created_at": "2020-11-10T04:01:19Z",
"last_comment_at": "2020-11-11T16:49:21Z",
"last_comment_author": "rmanoka"
},
{
"number": 579,
"created_at": "2020-12-29T03:03:57Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/georust/geo",
"host": "github.com",
"name": "geo",
"owner": "georust"
},
"metrics": {
"overall": {
"key": "overall",
"band": "excellent",
"name": "Overall health",
"note": "The weighted overall 71 is calibrated to 84 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 71,
"calibrated": 84,
"calibration": "2026-08-02"
}
}
],
"value": 84,
"inputs": {
"security": 72,
"vitality": 64,
"community": 88,
"governance": 83,
"calibration": "2026-08-02",
"engineering": 52,
"ai_readiness": 50,
"weighted_overall_raw": 71
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 64,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "excellent",
"name": "Development activity",
"note": null,
"notes": [],
"value": 91,
"inputs": {
"commits_last_year": 195,
"human_commit_share": 0.98,
"days_since_last_push": 0,
"active_weeks_last_year": 39
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "39/52 weeks with commits",
"points": 27,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 39
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "195 commits in the last year",
"points": 18,
"status": "met",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 195
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "24 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 24,
"inputs": {
"releases_count": 2,
"latest_release_tag": "0.17.1",
"releases_from_tags": true,
"days_since_latest_release": 1984,
"mean_days_between_releases": 734.4
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "2 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 2
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1984 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1984
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~734.4 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 734.4
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 2,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 2 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 2
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "excellent",
"name": "Community & Adoption",
"value": 88,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "excellent",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"forks": 263,
"stars": 1903,
"watchers": 36,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1,903 stars",
"points": 53.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 1903
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "263 forks",
"points": 20.2,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 263
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "36 watchers",
"points": 8.6,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 36
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "excellent",
"name": "Community health",
"note": null,
"notes": [],
"value": 86,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": 4,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": true,
"readme_badge_services": [
"shields.io"
],
"has_pull_request_template": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "license file present, not a recognized license",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "license_custom",
"params": {}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 13.5,
"status": "met",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "exceptional",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"packages": [
"geo",
"geo-types",
"geo-traits"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 46196249,
"monthly_downloads": 3495110
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "3,495,110 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 3495110,
"ecosystems": "crates"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "excellent",
"name": "Sustainability & Governance",
"value": 83,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "good",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 76,
"inputs": {
"bus_factor": 3,
"contributors_sampled": 97,
"top_contributor_share": 0.243
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "3 contributor(s) cover half of all commits",
"points": 36,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 3
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 24% of commits",
"points": 17,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 24
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "97 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 97
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 73 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 84,
"inputs": {
"merged_prs": 884,
"open_issues": 96,
"closed_issues": 380,
"prs_merged_7d": 3,
"prs_decided_7d": 5,
"prs_merged_30d": 16,
"prs_decided_30d": 19,
"issue_closed_ratio": 0.798,
"closed_unmerged_prs": 165,
"first_time_authors_30d": 5,
"first_time_prs_merged_30d": 6,
"first_time_prs_decided_30d": 8
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "80% of issues closed",
"points": 33.5,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 80
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "884/1049 decided PRs merged",
"points": 25.3,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 884,
"decided": 1049
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "6/8 first-time contributors' PRs merged in 30d",
"points": 9.8,
"status": "partial",
"details": [
{
"code": "newcomer_prs_merged",
"params": {
"days": 30,
"merged": 6,
"decided": 8
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"followers": 895,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "georust",
"public_repos": 38,
"account_age_days": 4236
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "895 followers of georust",
"points": 21.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 895,
"login": "georust"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "38 public repos, account ~11 yr old",
"points": 23.6,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 38
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"geo",
"geo-types",
"geo-traits"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "3 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 3,
"ecosystems": "crates"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "92 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 92
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 52,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "weak",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 44,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "29 out of 29 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [
"rust",
"geospatial",
"geography",
"geometry",
"gis"
],
"has_wiki": false,
"homepage": "https://crates.io/crates/geo",
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": "https://crates.io/crates/geo",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "5 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 5
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "good",
"name": "Security",
"value": 72,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "good",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 71,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 7.1
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection is not maximal on development and all release branches",
"points": 6,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "29 out of 29 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "all changesets reviewed",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 73 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is fuzzed",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "24 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "good",
"name": "Dependency advisories",
"note": "Matched the crates:geo@0.33.1 runtime dependency closure — what installing the published package pulls in — 76 packages. Reachability is not analyzed.",
"notes": [
{
"code": "advisories_scope_published",
"params": {
"package": "crates:geo@0.33.1",
"assessed": 76
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 76,
"inputs": {
"source": "osv",
"advisories": 8,
"affected_packages": 2,
"assessed_packages": 76,
"unassessed_packages": 0,
"affected_by_severity": "high 1, low 1",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "2 affected: tar 0.4.40 (high 8.1), atty 0.2.14 (low)",
"points": 8.6,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 2,
"packages": "tar 0.4.40 (high 8.1), atty 0.2.14 (low)"
}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "2 advisory-carrying package(s) unaddressed past 90 days; oldest published 1855 days ago",
"points": 32.6,
"status": "partial",
"details": [
{
"code": "advisories_stale",
"params": {
"days": 90,
"count": 2,
"oldest": 1855
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "exceptional",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 76,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 14
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 50,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.765,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "75 of 98 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 75,
"sampled": 98
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "weak",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 42,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.05,
"toolchain_manifests": [
"Cargo.toml",
"geo-benches/Cargo.toml",
"geo-test-fixtures/Cargo.toml",
"geo-traits/Cargo.toml",
"geo-types/Cargo.toml",
"geo/Cargo.toml",
"geo/fuzz/Cargo.toml",
"jts-test-runner/Cargo.toml"
],
"dependency_bot_commit_share": 0.02
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, geo-benches/Cargo.toml, geo-test-fixtures/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, geo-benches/Cargo.toml, geo-test-fixtures/Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Rust (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "5 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 5,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "2 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 2,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 64080,
"source_files_sampled": 319,
"oversized_source_files": 2
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Rust (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Rust"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "2/319 source files over 60KB",
"points": 54.7,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 319,
"oversized": 2
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"Could not fetch crates package 'geo-benches' from its registry",
"Could not fetch crates package 'jts-test-runner' from its registry",
"Could not fetch crates package 'geo-test-fixtures' from its registry"
],
"report_type": "repository",
"generated_at": "2026-08-02T23:16:47.018554Z",
"schema_version": "0.29.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/georust/geo.svg",
"full_name": "georust/geo",
"license_state": "custom",
"license_spdx": null
}