Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"tree",
"geo-spatial",
"nearest-neighbor-search",
"index",
"search",
"rust",
"k-dimensional"
],
"is_fork": false,
"size_kb": 148,
"has_wiki": false,
"homepage": null,
"languages": {
"Rust": 51909,
"Shell": 3664
},
"pushed_at": "2026-07-23T21:09:47Z",
"created_at": "2015-07-29T05:20:17Z",
"owner_type": "User",
"updated_at": "2026-07-23T21:10:01Z",
"description": "K-dimensional tree in Rust for fast geospatial indexing and lookup",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": null,
"name": "Rui Hu",
"type": "User",
"login": "mrhooray",
"company": null,
"location": "San Francisco",
"followers": 81,
"avatar_url": "https://avatars.githubusercontent.com/u/2237317?v=4",
"created_at": "2012-08-28T21:41:35Z",
"is_verified": null,
"public_repos": 20,
"account_age_days": 5077
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v0.8.1",
"kind": "patch",
"published_at": "2026-07-23T21:09:42Z"
},
{
"tag": "v0.8.0",
"kind": "minor",
"published_at": "2025-11-02T01:38:00Z"
},
{
"tag": "v0.7.0",
"kind": "minor",
"published_at": "2022-12-16T08:12:56Z"
},
{
"tag": "v0.6.0",
"kind": "minor",
"published_at": "2019-10-28T01:51:33Z"
},
{
"tag": "0.5.1",
"kind": "patch",
"published_at": null
},
{
"tag": "0.5.0",
"kind": "minor",
"published_at": null
},
{
"tag": "0.4.0",
"kind": "minor",
"published_at": null
},
{
"tag": "0.3.3",
"kind": "patch",
"published_at": "2017-11-20T05:52:30Z"
},
{
"tag": "0.3.2",
"kind": "patch",
"published_at": "2017-07-30T05:32:23Z"
},
{
"tag": "0.3.1",
"kind": "patch",
"published_at": "2016-07-24T05:22:01Z"
},
{
"tag": "0.3.0",
"kind": "minor",
"published_at": "2016-07-09T02:55:08Z"
},
{
"tag": "0.2.1",
"kind": "patch",
"published_at": "2015-08-18T01:09:57Z"
},
{
"tag": "0.2.0",
"kind": "minor",
"published_at": "2015-08-13T05:39:56Z"
},
{
"tag": "0.0.1",
"kind": "patch",
"published_at": "2015-08-10T04:31:08Z"
}
],
"recent_commits": [
{
"oid": "c175108ba77175b614d0a35362ff1a67b53a9515",
"body": null,
"is_bot": false,
"headline": "chore: Release kdtree version 0.8.1",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2026-07-23T21:09:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31e251d5aff760e327ab2627a43927d8a045958d",
"body": null,
"is_bot": false,
"headline": "fixed wasm build (#89)",
"author_name": "Marc-Stefan Cassola",
"author_login": "maccesch",
"committed_at": "2026-05-30T05:04:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43cbfa40cfd0c647354e5f57e83167ec12e4c83d",
"body": null,
"is_bot": false,
"headline": "refactor: simplify serde test cfg attribute (#90)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2026-05-30T04:58:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dc0a79b4a2b6b24b5e4ad2b36b2577fe51d2a590",
"body": "- Move distance_to_space and within_bounding_box from src/util.rs to src/kdtree.rs\n- Rename within_bounding_box to in_bounding_box and make it private\n- Organize helper functions for top-down readability flow\n- distance_to_space placed after nearest_step (its user) in NEAREST HELPERS\n- in_bounding_b\n[…]\nng_box (its user) in BOUNDING BOX\n- Remove util module declaration from src/lib.rs\n- Migrate tests from util.rs to kdtree.rs test module\n- Remove unnecessary doc comments from private helper functions",
"is_bot": false,
"headline": "refactor: eliminate util.rs and consolidate helper functions (#88)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-10T08:13:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1fddb5e541ee9de3f02a72f5797ac5e38df2a223",
"body": "…st modules (#87)\n\n- Add section headers to KdTree implementation for better organization\n- Move iterator types to appropriate sections\n- Restructure test suite into focused modules by functionality\n- Rename test files to follow consistent naming convention\n- Update documentation with bounding_box usage details",
"is_bot": false,
"headline": "refactor: reorganize code structure with clear section headers and te…",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-10T07:07:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c48dfd05bdc5d3a5d37b570ff2f2567ca6935fea",
"body": "…(#86)\n\n- Renamed within_bounding_box method to bounding_box for better API consistency\n- Updated test function name from test_within_bounding_box to test_bounding_box\n- Added documentation clarification about unordered results from within methods\n- Fixed dead code warning in test utilities",
"is_bot": false,
"headline": "refactor: rename within_bounding_box to bounding_box for consistency …",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T08:15:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14d8d2f083f3952e90a8f4a34907c8473e2594a9",
"body": "Remove within_unsorted method and update within method to return unordered results.\nThis provides a clear separation between ordered and unordered radius queries.\n\n- Remove within_unsorted method and benchmarks\n- Update within method to return unsorted results (removing sorting step)\n- Update tests \n[…]\nexpect unordered results from within method\n- Users who need sorted radius queries should use nearest_within_radius\n- Simplify API surface area while improving performance for unordered radius queries",
"is_bot": false,
"headline": "refactor: change within method to return unordered results (#85)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T07:48:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4d235131e55d5c2ad0cd931aac6aef4cea14eb47",
"body": "Add nearest_within_radius method that extends existing nearest functionality\nby filtering results based on an optional radius parameter. The method\nmaintains the same ordering guarantees as nearest while allowing callers\nto limit search space for performance optimization.\n\n- Add nearest_within_radius and corresponding iterator methods\n- Preserve existing nearest behavior as special case with unlimited radius\n- Add comprehensive tests and benchmarks\n- Update documentation with usage examples",
"is_bot": false,
"headline": "feat: add nearest_within_radius method with radius filtering (#84)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T07:19:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f3cc8cb0383c98a6567b2cf39075300cf745529",
"body": null,
"is_bot": false,
"headline": "refactor: split integration tests by feature (#83)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T05:57:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e8c51caf6be1a12446fbb4d0d2ea36c419dd148",
"body": "- Remove unnecessary PartialEq bounds from KdTree struct definition\n- Remove redundant trait bounds from main impl block\n- Add PartialEq bounds only to remove method where actually needed\n- Simplify iterator structs by removing redundant 'b lifetime parameter\n- Clean up iterator method signatures while maintaining correctness\n- Reduce trait bound complexity without breaking API compatibility\n\nAll tests pass with no breaking changes.",
"is_bot": false,
"headline": "refactor: simplify traits and lifetime usage in KdTree (#78)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T05:57:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8925e00212d45e3a2125dc16c244112a11dd6724",
"body": null,
"is_bot": false,
"headline": "ci: update bench regression threshold (#79)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-09T05:53:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "250ffadaa83e5b454bf0c026840350d438415e2c",
"body": "Remove unused PartialOrd<A> and PartialEq<A> implementations that\nwere not actually used. Replace 'element <= max_dist' comparison\nwith clearer 'element.distance <= max_dist' in kdtree.rs.\n\nThis reduces trait complexity while maintaining the same functionality.",
"is_bot": false,
"headline": "refactor: simplify HeapElement trait implementations (#71)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-08T16:53:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "668f00dd01e01f1ecdde9dd1f4f6dccc222efd8a",
"body": null,
"is_bot": false,
"headline": "ci: update bench reporting (#76)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-08T16:18:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d36e9254832dd677ee2dc3f3b8dee89ec7b83b63",
"body": "Co-authored-by: mrhooray <2237317+mrhooray@users.noreply.github.com>",
"is_bot": true,
"headline": "ci: refresh criterion baseline (#75)",
"author_name": "github-actions[bot]",
"author_login": "github-actions[bot]",
"committed_at": "2025-11-08T08:16:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7c35499f7e60390b7f9b9dc0b9dc0c4ceba4077",
"body": null,
"is_bot": false,
"headline": "ci: check bench regression (#73)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-08T07:00:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46ef3363a29ab543061f6d9ead8f002391347c64",
"body": "Move criterion from [dependencies] to [dev-dependencies] since it's only\nused for benchmarking and should not be included in the runtime\ndependencies of downstream crates.",
"is_bot": false,
"headline": "build: move criterion to dev-dependencies (#70)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-02T16:08:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4338c79b10939506bfcf707b0452e9e2deb6157a",
"body": "…#69)\n\n- Upgrade actions/checkout from v3 to v5 for latest performance improvements\n- Remove unnecessary matrix strategy since only testing stable Rust\n- Specify toolchain: stable directly instead of using matrix variable",
"is_bot": false,
"headline": "ci: update workflow to actions/checkout@v5 and simplify test matrix (…",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-02T16:05:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "df46a9bc3a4bf1a4037aece20e1fbba5edbcba12",
"body": "Remove extern crate num_traits and extern crate thiserror declarations\nthat are no longer needed in Rust 2018+ editions.",
"is_bot": false,
"headline": "refactor: remove obsolete extern crate declarations (#68)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-02T07:24:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "64e1cc5fd7dc936cb6f6e31a31273dd1c54b515d",
"body": null,
"is_bot": false,
"headline": "chore: Release kdtree version 0.8.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-02T01:38:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ad8acacd1d5e86752de1721d21629397e7d8490",
"body": "- Reorder sections: package → dependencies → dev-dependencies → features\n→ targets\n- Consolidate optional dependencies inline instead of separate sections\n- Update rand to 0.9 and criterion to 0.7\n- Group package metadata fields logically",
"is_bot": false,
"headline": "refactor: reorganize Cargo.toml for better readability (#67)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2025-11-02T01:28:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f178cdd68353d322b01a9100fee438ed82e45f03",
"body": "… with JSON (#66)\n\n* switched from +- inf to max and min value\n\n* format\n\n---------\n\nCo-authored-by: winfried.baumann <winfried.baumann@arculus.de>",
"is_bot": false,
"headline": "Use min/max instead of infinity to not break empty tree serialization…",
"author_name": "Winfried Baumann",
"author_login": "codewing",
"committed_at": "2025-11-02T01:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "965a9b1cf2a090bc44c16d256f887b371866ee54",
"body": null,
"is_bot": false,
"headline": "handle overlapping points during removal (#62)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T07:23:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31645258c34038c4be0cb8839da3f1f507607a28",
"body": null,
"is_bot": false,
"headline": "bump thiserror (#61)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T04:01:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf79df61bfea67ca7d77302d3bbbdb7987328c0d",
"body": "* add within_bounding_box\r\n\r\n* warnings",
"is_bot": false,
"headline": "add within_bounding_box (#60)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T03:26:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16485ab1c307c460448829a0a90eb427d6387962",
"body": null,
"is_bot": false,
"headline": "group by functionality (#59)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T02:57:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b14bbb037fe5d2c8896e0f36a7510034d03d45f8",
"body": "* use critrion instead of feature test, since it is unstablized\r\n\r\n* fixes\r\n\r\n* warnings\r\n\r\n---------\r\n\r\nCo-authored-by: Zhen Liu <lzhen.dev@outlook.com>",
"is_bot": false,
"headline": "criterion (#58)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T02:26:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "174ca635b5f2e40b091820a341886e17a905ab3f",
"body": null,
"is_bot": false,
"headline": "clippy warnings (#56)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T01:49:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c9c72e21ef2baae24bb7b0baa16c0406a36a7fd",
"body": null,
"is_bot": false,
"headline": "update rust versions checked on ci (#57)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-11-30T01:48:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f3755e1070544f6c2b3946c83195955b924a94a",
"body": "* added within_unsorted within_count\r\n\r\n* did cargo fmt\r\n\r\n* better org\r\n\r\n---------\r\n\r\nCo-authored-by: Rui Hu <code@mrhooray.com>",
"is_bot": false,
"headline": "added within_unsorted and within_count (#52)",
"author_name": "T. Qin",
"author_login": "abstractqqq",
"committed_at": "2024-02-02T20:44:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e01eb8ee7bec9b381c43762682ecf47e700d690",
"body": null,
"is_bot": false,
"headline": "fix partial order lint error (#53)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2024-01-23T06:41:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f03078e20788ec27126dc71e3ba81fb8b8f1c58",
"body": null,
"is_bot": false,
"headline": "use dtolnay/rust-toolchain (#49)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-17T01:03:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbcfe7231800c996bce58d525a81aa068f8819f7",
"body": null,
"is_bot": false,
"headline": "chore: Release kdtree version 0.7.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-16T08:12:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b48386c6de24508c1b36ba5be193dbd813baba8",
"body": null,
"is_bot": false,
"headline": "set release replacements",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-16T08:10:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "959873f0c5dd4c5ce49118dad37fa96f9b3ad593",
"body": null,
"is_bot": false,
"headline": "use action-rs (#48)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-16T07:46:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13eb241885a2f928eaff64d39d2259d7e6105339",
"body": null,
"is_bot": false,
"headline": "update readme badges (#47)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-16T07:27:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a731bad33054279e4bafcc1224fe561d7c40c0fd",
"body": null,
"is_bot": false,
"headline": "cargo clippy (#46)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-16T07:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "251467192591ce0da76887d5a814fafaf21a8d45",
"body": null,
"is_bot": false,
"headline": "cargo fmt (#45)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-15T08:26:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ff080e8ae05014c2d9d7590be356607eeaeac330",
"body": null,
"is_bot": false,
"headline": "travis to github action (#44)",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2022-12-15T08:05:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9970fb737ff1dd8356e676d15c249ddc94c611ff",
"body": "* Avoid infinite call loop due to float's accuracy.\r\n\r\n* adapt for negative values\r\n\r\n* add test for infinite_call_loop\r\n\r\n* cargo fmt",
"is_bot": false,
"headline": "Avoid infinite call loop due to float's accuracy. (#43)",
"author_name": "TYPE",
"author_login": "TYPEmber",
"committed_at": "2022-12-11T04:59:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "761dbd4df36cd0f8675acfe8c2a394b1bcec283c",
"body": "Add docs to constructors",
"is_bot": false,
"headline": "Add docs to constructors (#37)",
"author_name": "Yuhan Lin",
"author_login": "YuhanLiin",
"committed_at": "2021-05-13T02:26:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26596430d0d02aa2ab941737d8c919996b37e23f",
"body": "* add ability to remove item\r\n\r\n* fix size decrementing with invalid remove\r\n\r\n* handle multiple matches and return number removed",
"is_bot": false,
"headline": "add ability to remove item (#36)",
"author_name": "Eric Trombly",
"author_login": "etrombly",
"committed_at": "2020-10-20T07:27:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f73c3420ef06a1756f3eb937839f3dcca1439fe4",
"body": "It should always be capped by `max_dist` since we are not going to return any\r\npoint further then `max_dist`, rather than be set to infinity when `evaluated`\r\ndoesn't have enough elements yet.",
"is_bot": false,
"headline": "Fix the calculation of `evaluated_dist` in kdtree.rs. (#32)",
"author_name": "maowtm",
"author_login": "micromaomao",
"committed_at": "2020-06-14T03:04:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54be2b55a797aa88e5287719759d410183b897e1",
"body": "Expected value should be on the right to ensure correct error output.",
"is_bot": false,
"headline": "Fix assert_eq order in count_dist.rs (#33)",
"author_name": "maowtm",
"author_login": "micromaomao",
"committed_at": "2020-06-14T01:30:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7c788bdbb693c555942b12de9e7ffa3f4ffbbfb",
"body": null,
"is_bot": false,
"headline": "Fix squared_euclidean docs (#31)",
"author_name": "Josua Schmid",
"author_login": "schmijos",
"committed_at": "2020-04-24T04:39:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbb5e70f3b8f29902f1785a965135ad1075684be",
"body": null,
"is_bot": false,
"headline": "support clone",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2019-11-01T07:53:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a4fd52282a71bd028ce72a8c3b7d99a026e06ff",
"body": null,
"is_bot": false,
"headline": "(cargo-release) start next development iteration 0.6.1-alpha.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2019-10-28T01:51:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb3464a299726dce7ffd7a6ad983c6876d4f6b1b",
"body": null,
"is_bot": false,
"headline": "(cargo-release) version 0.6.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2019-10-28T01:51:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8bc168464bdbc9b304ccc810b9c0a18058a772fa",
"body": null,
"is_bot": false,
"headline": "update crate keywords",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2019-10-28T01:51:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb17e1a1c8a2deac2e90a1a00558d0162a780021",
"body": "* implement NearestIterMut\r\n\r\n* add test",
"is_bot": false,
"headline": "implement nearest_iter_mut() (#29)",
"author_name": "Park Joon-Kyu",
"author_login": "segfault87",
"committed_at": "2019-10-28T01:41:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c004cc089fd4da64ea039ea20d3bcdefcb8810a",
"body": "Rename `KdTree::new_with_capacity()` to `with_capcity()`",
"is_bot": false,
"headline": "Merge pull request #23 from ordovicia/with-capacity",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-12-07T16:43:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f5630d5bb90a1b0ac641b4e9489a859d3232ff3f",
"body": null,
"is_bot": false,
"headline": "Rename `KdTree::new_with_capacity()` to `with_capcity()`",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-12-06T08:30:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e1ca482a4196ffb139ac66bbd9b8bf6323257a2",
"body": "Fix typo: ridius -> radius",
"is_bot": false,
"headline": "Merge pull request #25 from ordovicia/typo-radius",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-12-06T02:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78d08008273a91cdb3f835f3882a14e872ff99a2",
"body": null,
"is_bot": false,
"headline": "Fix typo: ridius -> radius",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-12-05T07:09:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c19c0e85929efa80af3d81b9345f87fe61c45927",
"body": "Remove redundant trait bound",
"is_bot": false,
"headline": "Merge pull request #24 from ordovicia/redundant-trait-bound",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-12-03T10:36:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1545888a37908de1cb06ea20a65ebddb7b10f54",
"body": "Some cleanups",
"is_bot": false,
"headline": "Merge pull request #21 from ordovicia/cleanup",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-12-03T10:34:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "225becfd34111e835ec956a0f20d9903454a0cc6",
"body": null,
"is_bot": false,
"headline": "Remove redundant trait bound",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-12-01T04:31:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c7d8bea801501303cfd05bf02a856ed940d245c",
"body": null,
"is_bot": false,
"headline": "Replace assert!(x == y) with assert_eq!(x, y) in src/kdtree.rs",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:46:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09380f9e165eb969f664f6841250c631b926f0ff",
"body": null,
"is_bot": false,
"headline": "Minor cosmetic changes",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:32:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "007a7afd2cc75da17bd64c6160f66b5eb643a444",
"body": null,
"is_bot": false,
"headline": "Fix docs",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:30:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "254a7806cc0bc51d9e38de5c57a211616776a90f",
"body": null,
"is_bot": false,
"headline": "cargo fix --edition",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:17:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8264f55a50fa092b80f8d7e3f8413e565a28befe",
"body": null,
"is_bot": false,
"headline": "clippy",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "192e9a3d848e4e3d566bde0dcac2da7d8826a138",
"body": null,
"is_bot": false,
"headline": "cargo fmt",
"author_name": "Hidehito Yabuuchi",
"author_login": "ordovicia",
"committed_at": "2018-11-29T07:08:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "88fd994d06c93154ee69ca66ef29e684bddb7883",
"body": null,
"is_bot": false,
"headline": "v0.5.1",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-04-24T08:17:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a466f633a3242421050fff4fb9ce7265de52eab8",
"body": null,
"is_bot": false,
"headline": "update description",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-04-24T08:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa0e5207b8520260531fb8188ee5e5771837a82b",
"body": null,
"is_bot": false,
"headline": "v0.5.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-04-24T08:10:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec1df29f67ac33fe7b8a1eb383d3324779a49644",
"body": "Add serde to support serialization",
"is_bot": false,
"headline": "Merge pull request #17 from etrombly/serde",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-04-23T22:51:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4599c71904f553af505fcdac5906d7930ab2879",
"body": null,
"is_bot": false,
"headline": "add serde as a feature",
"author_name": "Eric Trombly",
"author_login": "etrombly",
"committed_at": "2018-04-23T08:22:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4f2e12091e58a4913798e98a1bf7519f604f41c",
"body": "Use generic Float trait",
"is_bot": false,
"headline": "Merge pull request #15 from mthh/using_numtraits",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2018-04-23T06:40:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "103120d7144b366ce5940dd6e532dd47d4a02632",
"body": null,
"is_bot": false,
"headline": "remove unused import",
"author_name": "mthh",
"author_login": "mthh",
"committed_at": "2018-04-03T10:36:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "243ae28018c2d6455ce81b5fed71211357a93575",
"body": null,
"is_bot": false,
"headline": "Use Float trait from num-traits",
"author_name": "mthh",
"author_login": "mthh",
"committed_at": "2018-04-03T10:22:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72c51fd126307889196a0aa53de21a150be0a534",
"body": null,
"is_bot": false,
"headline": "v0.4.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-11-28T09:20:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2b36785c642fa778dae31c94175ff1410982245",
"body": null,
"is_bot": false,
"headline": "update readme",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-11-28T09:13:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "43b7e2138b5f326d2cbcea6b94b3981b4902b3c8",
"body": "Implement std::error::Error for ErrorKind",
"is_bot": false,
"headline": "Merge pull request #14 from gadomski/std-error-Error",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-11-28T09:04:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "404781c8e98ae746df7e24f62b80b6721dc8d7a7",
"body": "Alternative to #13.",
"is_bot": false,
"headline": "Implement std::error::Error for ErrorKind",
"author_name": "Pete Gadomski",
"author_login": "gadomski",
"committed_at": "2017-11-27T13:44:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4933f5c0ff41a357e6e2edf2c8157a1979417db7",
"body": null,
"is_bot": false,
"headline": "v0.3.3",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-11-20T05:52:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3362e42bdf3b6690257989bd9500c81dd413fa7",
"body": null,
"is_bot": false,
"headline": "update license",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-11-20T04:07:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92edfdc397f848d8582ece05ebb3496dee42553d",
"body": null,
"is_bot": false,
"headline": "v0.3.2",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-07-30T05:32:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8aab606aaa6b13ff170b517f0a6eec81df285f7f",
"body": null,
"is_bot": false,
"headline": "update documentation",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-07-30T05:31:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27060574ea5a9687467b43b59f572b1f7da7bbb3",
"body": null,
"is_bot": false,
"headline": "fix readme sections",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2017-07-30T05:25:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3e58864eaf2026173202b07ac354acebf5fb996e",
"body": "Test to understand the capacity",
"is_bot": false,
"headline": "Merge pull request #10 from odarbelaeze/just-a-little-test",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-11-14T00:24:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a6a89d326d03aabcfbdcdff57754f4255059578",
"body": null,
"is_bot": false,
"headline": "Add some test to understand distance to space",
"author_name": "Oscar David Arbeláez",
"author_login": "odarbelaeze",
"committed_at": "2016-11-05T01:01:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d32704b2ee2568a3196c40c287161d605177757d",
"body": null,
"is_bot": false,
"headline": "Test to understand the capacity",
"author_name": "Oscar David Arbeláez",
"author_login": "odarbelaeze",
"committed_at": "2016-11-04T01:53:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d7034f4d24ad69639d947713a30473de8052ba1",
"body": "Document the distance module.",
"is_bot": false,
"headline": "Merge pull request #9 from odarbelaeze/a-bit-more-docs",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-10-31T00:08:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29462186efa2aa38a1ed0b6d43e62a392f99a0a0",
"body": null,
"is_bot": false,
"headline": "Fix syntax error picked by rust doc",
"author_name": "Oscar David Arbeláez",
"author_login": "odarbelaeze",
"committed_at": "2016-10-30T15:44:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf92ae72700531aaaa7ff4b5701a794ee0649747",
"body": null,
"is_bot": false,
"headline": "Document the distance module.",
"author_name": "Oscar David Arbeláez",
"author_login": "odarbelaeze",
"committed_at": "2016-10-30T15:19:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8e3cbbd58de26f38a7a239b22f244110cb9922b",
"body": null,
"is_bot": false,
"headline": "0.3.1",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-07-24T05:22:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c759b9474e12843de1f1972a8537c3ca266e1dbd",
"body": "Bug: distance_to_space on wrong thing. Massive performance wins.",
"is_bot": false,
"headline": "Merge pull request #7 from Eh2406/curr_isnot_candidate",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-07-24T05:20:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b910284c16c69a201a637e2574905ea610090bc2",
"body": null,
"is_bot": false,
"headline": "Bug: distance_to_space on rong thing. Massive performance wins.",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-07-12T13:47:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "074ee2cc824905fbb1102fb7a9b841b6c713c76c",
"body": null,
"is_bot": false,
"headline": "0.3.0",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-07-09T02:55:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1a2bb765f0db48054c52ab035d55fe5ddebe12f",
"body": "Remove raw pointers and more",
"is_bot": false,
"headline": "Merge pull request #5 from Eh2406/master",
"author_name": "Rui Hu",
"author_login": "mrhooray",
"committed_at": "2016-06-19T01:20:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f9bfef0c0ef927d040b782971326d1d04dbdaab",
"body": null,
"is_bot": false,
"headline": "count distance calles, perhaps too brittle",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-14T21:26:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f959f1abdc1f29ba7313fff4ea8c1231c67bc9e4",
"body": null,
"is_bot": false,
"headline": "add iter_nearest",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-14T19:45:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34bb5b3d12d147cb9b49e917d87f027704d7ee9b",
"body": null,
"is_bot": false,
"headline": "add a within serch",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-13T03:29:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "184dbe58205ad64611f3df9b9fdf860a9ad1aa50",
"body": null,
"is_bot": false,
"headline": "missed one",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-13T00:14:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f1e7aef4ec1588606050114b8b9c1069d56b7406",
"body": null,
"is_bot": false,
"headline": "generic over the type of vector",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-10T23:39:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92967e1e249d0afa9e4e967e7228e6103bcdd2c4",
"body": null,
"is_bot": false,
"headline": "re-use belongs_in_left",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-10T21:05:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fcf03fdef746a36f9e4378ae05a97c3cdcb80d39",
"body": null,
"is_bot": false,
"headline": "add a test",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-10T03:59:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1803ccc721f4f79e488e27e5bc3ade10e6718752",
"body": null,
"is_bot": false,
"headline": "Use iter insted of loops",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-10T03:26:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92af99a8e6f36ee4d96a1a4f9858ceece98e7379",
"body": null,
"is_bot": false,
"headline": "remove all unsafe pointers",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-09T03:45:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70d6e95781701f80886e2d2c8a72bda4a46db51e",
"body": null,
"is_bot": false,
"headline": "rustfmt",
"author_name": "Eh2406",
"author_login": "Eh2406",
"committed_at": "2016-06-08T19:47:28Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 14,
"commits_last_year": 21,
"latest_release_at": "2026-07-23T21:09:42Z",
"latest_release_tag": "v0.8.1",
"releases_from_tags": true,
"days_since_last_push": 0,
"active_weeks_last_year": 4,
"days_since_latest_release": 0,
"mean_days_between_releases": 608.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "kdtree",
"exists": true,
"license": "MIT OR Apache-2.0",
"keywords": [
"search",
"tree",
"geo",
"nearest",
"neighbor"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/kdtree",
"is_deprecated": false,
"latest_version": "0.8.1",
"repository_url": "https://github.com/mrhooray/kdtree-rs",
"versions_count": 15,
"total_downloads": 2449881,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 151578,
"first_published_at": "2015-08-08T22:28:47.143276Z",
"latest_published_at": "2026-07-23T21:09:43.790853Z",
"latest_version_yanked": false,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 64,
"stars": 283,
"watchers": 6,
"fork_history": {
"days": [
{
"date": "2016-03-20",
"count": 1
},
{
"date": "2016-03-21",
"count": 1
},
{
"date": "2016-10-30",
"count": 1
},
{
"date": "2017-04-07",
"count": 1
},
{
"date": "2017-11-22",
"count": 1
},
{
"date": "2018-04-03",
"count": 1
},
{
"date": "2018-04-22",
"count": 1
},
{
"date": "2018-11-29",
"count": 1
},
{
"date": "2018-12-27",
"count": 1
},
{
"date": "2019-01-27",
"count": 1
},
{
"date": "2019-07-22",
"count": 1
},
{
"date": "2019-10-28",
"count": 1
},
{
"date": "2020-02-15",
"count": 1
},
{
"date": "2020-03-14",
"count": 1
},
{
"date": "2020-04-08",
"count": 1
},
{
"date": "2020-04-23",
"count": 1
},
{
"date": "2020-06-05",
"count": 1
},
{
"date": "2020-07-01",
"count": 1
},
{
"date": "2020-10-03",
"count": 1
},
{
"date": "2020-11-15",
"count": 1
},
{
"date": "2021-03-17",
"count": 1
},
{
"date": "2021-05-08",
"count": 1
},
{
"date": "2021-09-08",
"count": 1
},
{
"date": "2022-01-21",
"count": 1
},
{
"date": "2022-01-28",
"count": 1
},
{
"date": "2022-04-24",
"count": 1
},
{
"date": "2022-04-29",
"count": 1
},
{
"date": "2022-05-17",
"count": 1
},
{
"date": "2022-05-18",
"count": 1
},
{
"date": "2022-10-01",
"count": 1
},
{
"date": "2022-11-12",
"count": 1
},
{
"date": "2022-12-09",
"count": 1
},
{
"date": "2023-01-04",
"count": 1
},
{
"date": "2023-03-16",
"count": 1
},
{
"date": "2023-04-17",
"count": 1
},
{
"date": "2023-05-26",
"count": 1
},
{
"date": "2023-06-16",
"count": 1
},
{
"date": "2023-06-26",
"count": 1
},
{
"date": "2023-12-25",
"count": 1
},
{
"date": "2024-05-20",
"count": 1
},
{
"date": "2024-11-05",
"count": 1
},
{
"date": "2024-11-10",
"count": 1
},
{
"date": "2025-05-24",
"count": 1
},
{
"date": "2025-07-03",
"count": 1
},
{
"date": "2025-07-12",
"count": 1
},
{
"date": "2025-09-27",
"count": 1
},
{
"date": "2025-10-22",
"count": 1
},
{
"date": "2025-12-23",
"count": 1
},
{
"date": "2026-01-25",
"count": 1
},
{
"date": "2026-04-13",
"count": 1
},
{
"date": "2026-04-18",
"count": 1
},
{
"date": "2026-05-24",
"count": 1
},
{
"date": "2026-06-17",
"count": 1
},
{
"date": "2026-07-20",
"count": 1
}
],
"complete": true,
"collected": 54,
"total_forks": 64
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"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"
],
"largest_source_bytes": 26023,
"source_files_sampled": 12,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": null,
"scope": "published_package",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 53,
"malicious_count": 0,
"assessed_package": "crates:kdtree@0.8.1",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "num-traits",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.2"
},
{
"name": "serde",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "serde_derive",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.0"
},
{
"name": "thiserror",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "2.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "num-traits",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_derive",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "thiserror",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "criterion",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "serde_json",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 7,
"direct_count": 4,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 56,
"open_issues": 1,
"closed_ratio": 0.957,
"closed_issues": 22,
"closed_unmerged_prs": 12
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "mrhooray",
"commits": 81,
"avatar_url": "https://avatars.githubusercontent.com/u/2237317?v=4"
},
{
"type": "User",
"login": "Eh2406",
"commits": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/3709504?v=4"
},
{
"type": "User",
"login": "ordovicia",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/8240952?v=4"
},
{
"type": "User",
"login": "odarbelaeze",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/1621518?v=4"
},
{
"type": "User",
"login": "etrombly",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/1096363?v=4"
},
{
"type": "User",
"login": "micromaomao",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/6070533?v=4"
},
{
"type": "User",
"login": "mthh",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/12172162?v=4"
},
{
"type": "User",
"login": "llogiq",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/4200835?v=4"
},
{
"type": "User",
"login": "dbravender",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/12862?v=4"
},
{
"type": "User",
"login": "schmijos",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/245443?v=4"
}
],
"contributors_sampled": 17,
"top_contributor_share": 0.669
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"rust.yaml",
"update-baseline.yaml"
],
"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": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 5,
"reason": "13 out of 24 merged PRs checked by a CI test -- score normalized to 5",
"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": 1,
"reason": "Found 3/29 approved changesets -- score normalized to 1",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 3,
"reason": "3 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 3",
"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": "c175108ba77175b614d0a35362ff1a67b53a9515",
"ran_at": "2026-07-24T16:05:31Z",
"aggregate_score": 3.5,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-23T21:13:07Z",
"oldest_open_prs": [
{
"number": 92,
"created_at": "2026-07-20T08:51:56Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-05-30T05:04:30Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 63,
"created_at": "2025-01-29T18:20:43Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/mrhooray/kdtree-rs",
"host": "github.com",
"name": "kdtree-rs",
"owner": "mrhooray"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"security": 48,
"vitality": 58,
"community": 63,
"governance": 64,
"engineering": 55
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 58,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 54,
"inputs": {
"commits_last_year": 21,
"human_commit_share": 0.99,
"days_since_last_push": 0,
"active_weeks_last_year": 4
},
"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": "4/52 weeks with commits",
"points": 2.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 4
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "21 commits in the last year",
"points": 12.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 21
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "3 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "moderate",
"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": 64,
"inputs": {
"releases_count": 14,
"latest_release_tag": "v0.8.1",
"releases_from_tags": true,
"days_since_latest_release": 0,
"mean_days_between_releases": 608.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "14 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 14
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~608.6 days",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 608.6
}
}
],
"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": "excellent",
"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": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 63,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 59,
"inputs": {
"forks": 64,
"stars": 283,
"watchers": 6,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "283 stars",
"points": 39.7,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 283
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "64 forks",
"points": 15,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 64
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "6 watchers",
"points": 3.9,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 6
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "excellent",
"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": 86,
"inputs": {
"packages": [
"kdtree"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 2449881,
"monthly_downloads": 151578
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "151,578 downloads/month across crates",
"points": 69.1,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 151578,
"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": "moderate",
"name": "Sustainability & Governance",
"value": 64,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 33,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 17,
"top_contributor_share": 0.669
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 67% of commits",
"points": 7.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 67
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "17 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 17
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 78,
"inputs": {
"merged_prs": 56,
"open_issues": 1,
"closed_issues": 22,
"issue_closed_ratio": 0.957,
"closed_unmerged_prs": 12
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "96% of issues closed",
"points": 44.7,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 96
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "56/68 decided PRs merged",
"points": 31.5,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 56,
"decided": 68
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 3/29 approved changesets -- score normalized to 1",
"points": 1.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 57,
"inputs": {
"followers": 81,
"owner_type": "User",
"is_verified": null,
"owner_login": "mrhooray",
"public_repos": 20,
"account_age_days": 5077
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "81 followers of mrhooray",
"points": 13.8,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 81,
"login": "mrhooray"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "20 public repos, account ~13 yr old",
"points": 21.6,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 20
}
},
{
"code": "account_age_years",
"params": {
"years": 13
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"kdtree"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on crates",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"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": "15 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 15
}
}
],
"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": 55,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"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": "13 out of 24 merged PRs checked by a CI test -- score normalized to 5",
"points": 10,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [
"tree",
"geo-spatial",
"nearest-neighbor-search",
"index",
"search",
"rust",
"k-dimensional"
],
"has_wiki": false,
"homepage": null,
"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": null,
"points": 0,
"status": "missed",
"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": "7 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 7
}
}
],
"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": "at_risk",
"name": "Security",
"value": 48,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"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": 35,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 3.5
},
"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 not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "13 out of 24 merged PRs checked by a CI test -- score normalized to 5",
"points": 1.2,
"status": "partial",
"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": "Found 3/29 approved changesets -- score normalized to 1",
"points": 0.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"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": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "3 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 3",
"points": 2.2,
"status": "partial",
"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": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): No advisories left outstanding. Remaining weights renormalized. Matched the crates:kdtree@0.8.1 runtime dependency closure — what installing the published package pulls in — 53 packages. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_published",
"params": {
"package": "crates:kdtree@0.8.1",
"assessed": 53
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 53,
"unassessed_packages": 0,
"affected_by_severity": "none",
"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": "no indirect dependency carries a known advisory",
"points": 25,
"status": "met",
"details": [
{
"code": "no_indirect_advisories",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"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": 53,
"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": "excellent",
"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"
],
"review_only_matches": 0,
"assessed_self_published_locations": 15
},
"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,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 29,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.545,
"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": "54 of 99 human commits state their intent (structured subject or explanatory body)",
"points": 29.1,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 54,
"sampled": 99
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"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": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"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": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 26023,
"source_files_sampled": 12,
"oversized_source_files": 0
},
"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": "0/12 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 12,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-24T16:05:52.299376Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/mrhooray/kdtree-rs.svg",
"full_name": "mrhooray/kdtree-rs",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}