Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"polyline",
"polyline-decoder",
"polyline-encoder"
],
"is_fork": false,
"size_kb": 113,
"has_wiki": true,
"homepage": "https://crates.io/crates/polyline",
"languages": {
"Rust": 16158
},
"pushed_at": "2025-07-26T15:49:02Z",
"created_at": "2016-06-15T16:54:46Z",
"owner_type": "Organization",
"updated_at": "2026-06-22T05:50:57Z",
"description": "Fast Google Encoded Polyline encoding & decoding in Rust",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://georust.org",
"name": "GeoRust",
"type": "Organization",
"login": "georust",
"company": null,
"location": null,
"followers": 890,
"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": 4225
},
"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.11.0",
"kind": "minor",
"published_at": "2024-05-13T19:14:10Z"
},
{
"tag": "v0.10.2",
"kind": "patch",
"published_at": "2024-04-26T16:33:01Z"
},
{
"tag": "v0.10.1",
"kind": "patch",
"published_at": "2023-05-09T22:27:12Z"
},
{
"tag": "v0.10.0",
"kind": "minor",
"published_at": "2023-03-12T20:36:55Z"
},
{
"tag": "v0.7.1",
"kind": "patch",
"published_at": "2020-03-11T14:49:13Z"
},
{
"tag": "0.7.0",
"kind": "minor",
"published_at": "2019-09-30T03:20:17Z"
},
{
"tag": "0.6.0",
"kind": "minor",
"published_at": "2019-09-27T01:18:13Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2016-07-17T21:31:35Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2016-07-13T22:38:51Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2016-07-06T14:35:24Z"
}
],
"recent_commits": [
{
"oid": "7fc654d463a0a7a0b5c23bb4b2ba34b4ac60d73a",
"body": null,
"is_bot": false,
"headline": "make PolylineError clonable (#54)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2025-07-26T15:48:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "add9d0f0cf0615136a72b8beb0512a505ea7902b",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.11.0 release (#52)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-05-13T19:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb7608202b1749d719c00c33de9496c065b61558",
"body": "Co-authored-by: Stephan Hügel <urschrei@gmail.com>",
"is_bot": false,
"headline": "benchmarks against flexpolyline (#46)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-13T19:03:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b360f5eba49222303062b41946bbd636df06579",
"body": "* Update README, metadata, and edition\n\n* Update CHANGELOG.md\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>\n\n---------\n\nCo-authored-by: Michael Kirk <michael.code@endoftheworl.de>",
"is_bot": false,
"headline": "Update edition, metadata, README, dependencies (#51)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-05-13T17:25:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "694ca02765ec89a7e09bfa708197538af7a64b5e",
"body": null,
"is_bot": false,
"headline": "Improve structured errors (#50)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-05-13T17:19:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3a3c564cf1ce5617691fe154a7f190a8cfb4521",
"body": "We can just build up the coords directly rather than building up arrays\nand then converting them to Coords.\n\n```\n$ cargo bench --bench=\"*\" -- --baseline=sha-6872788\n Compiling polyline v0.10.2 (/Users/mkirk/src/georust/polyline)\n Finished `bench` profile [optimized] target(s) in 0.94s\n Run\n[…]\ne-6\n time: [97.706 µs 98.786 µs 99.825 µs]\n change: [-3.1947% -2.2649% -1.3617%] (p = 0.00 < 0.05)\n Performance has improved.\n```",
"is_bot": false,
"headline": "Skip intermediate coord representation (#49)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-11T21:15:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6872788dbd83f97481c722763cddad33ff7db9a9",
"body": "* Switch to structured errors, inline encoding\n\n* Simplify Display impl for error\n\n* Document error fields\n\n* Fix error message case according to convention",
"is_bot": false,
"headline": "Switch to structured errors, inline encoding (#48)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-05-11T20:39:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5340961b16d7a4c1d4946462537998467a9536dc",
"body": "There was a bug in the recently merged 451f638",
"is_bot": false,
"headline": "Fix validation limits to be inclusive (#47)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-09T13:17:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "451f638a9ff8f432e70371caebc50b1067d5dffd",
"body": "* Err rather than return invalid output\n\nThis introduces a serious performance regression for decode:\n\n$ cargo bench --bench=\"*\" -- --baseline=perf2\n Compiling polyline v0.10.2 (/Users/mkirk/src/georust/polyline)\n Finished `bench` profile [optimized] target(s) in 0.77s\n Running benches/benc\n[…]\n change: [+19.484% +20.773% +22.034%] (p = 0.00 < 0.05)\n Performance has regressed.\n\n---------\n\nCo-authored-by: mattiZed <mattized@users.noreply.github.com>",
"is_bot": false,
"headline": "Validate output of decoding (#45)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-09T00:22:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4cc9ff09e61bd6586d363649d53e13d2395a5494",
"body": "* scale once\n\nCo-authored-by: mattiZed <mattized@users.noreply.github.com>\n\n* inline error checking\n\n---------\n\nCo-authored-by: mattiZed <mattized@users.noreply.github.com>",
"is_bot": false,
"headline": "encode performance tweaks (#43)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-08T23:18:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edfd1a07064a91d6894a3f03ce76ceec335b7523",
"body": "* cargo fmt\n\n* cleanup bench",
"is_bot": false,
"headline": "fixup bench (#44)",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-08T20:17:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a029bf81fcbce1f7da22d189da13c92687727053",
"body": null,
"is_bot": false,
"headline": "Update criterion (#34)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-05-08T01:15:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1419c04d018bdb1dc0f78cc026c7ecafbc15f8c2",
"body": null,
"is_bot": false,
"headline": "Merge branch 'mkirk/encode-perf'",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-06T23:29:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db9b5b90a512731178bc5b8c971f2e14283dc56f",
"body": "Bench output:\n\n encode 10_000 coordinates at precision 1e-5\n time: [123.68 µs 123.80 µs 123.94 µs]\n change: [-74.528% -74.461% -74.401%] (p = 0.00 < 0.05)\n Performance has improved.\n Found 6 outliers among 100 m\n[…]\n% -73.066% -72.932%] (p = 0.00 < 0.05)\n Performance has improved.\n Found 11 outliers among 100 measurements (11.00%)\n 9 (9.00%) high mild\n 2 (2.00%) high severe",
"is_bot": false,
"headline": "[perf] mutate rather than allocate a bunch of heap strings",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-06T23:29:25Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cf0fb0e57e5ad1e309e20e2d6b8719a1c0b0c694",
"body": "Mostly the issue is with \"bench HUGE polyline6 decoding\".\nI'm not sure why.\n\nInterestingly this \"HUGE\" polyine is not much bigger than the other\ndecode test, which seems to run in much more consistent time.",
"is_bot": false,
"headline": "attempt to make bench more deterministic",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2024-05-06T23:29:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb74f6bfaa18e91ca504b1377ad02291e8d7eb09",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.10.2 release (#38)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-04-26T16:33:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4436a749576424c21c1792e57d9d99e19486c1f",
"body": "* fix: upper bound for while loop, protect against overflow when shifting\n\n* style: add semicolon\n\n* fix: \"broken string\" test does not panic but only produces garbage\n\n* chore: add todo note and also remove assertion from another test\n\n* refactor: slightly different logic\n\n* feat: just check if byt\n[…]\n\n\n* fix: do not unwrap\n\n* chore: update changelog\n\n* chore: add note on perf\n\n---------\n\nCo-authored-by: mattiZed <mattized@users.noreply.github.com>\nCo-authored-by: Stephan Hügel <urschrei@gmail.com>",
"is_bot": false,
"headline": "Fix/out of bounds while decoding (#37)",
"author_name": "mattiZed",
"author_login": "mattiZed",
"committed_at": "2024-04-26T15:19:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "16d66d8eddbb6c17bb217030565423f841bf0b1f",
"body": null,
"is_bot": false,
"headline": "Try to make CI compatible with merge queue",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-04-25T20:22:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2aeaf1624264a8fc00a53783befb82fd259a623f",
"body": null,
"is_bot": false,
"headline": "Update to latest version of Checkout",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-04-25T20:16:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a8f2c495dfcd4dfeeb2772266538e538f3b091f",
"body": null,
"is_bot": false,
"headline": "Note existence of FFI crate",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2024-03-04T16:33:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8ae63a58c1de3d741e370d5b4c6d7cb2b53eb10f",
"body": "Remove unused Node JS bindings",
"is_bot": false,
"headline": "Merge pull request #33 from JosiahParry/dirtywork",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2023-12-06T16:35:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "52a4496f6deb9f0a61ee265b5201e0c6abc49b77",
"body": null,
"is_bot": false,
"headline": "do the dirty work",
"author_name": "Josiah Parry",
"author_login": "JosiahParry",
"committed_at": "2023-12-06T16:29:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a13af2b31dea9899329ff2b023a774a58c98eb6",
"body": null,
"is_bot": false,
"headline": "prepare changelog for next release",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2023-05-10T22:23:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8eeccd1374ca5f7271a8bd60ecf603a5b234a99",
"body": "Prepare for 0.10.1",
"is_bot": false,
"headline": "Merge pull request #32 from georust/release/0.10.1",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2023-05-09T22:27:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5874c1083b783ed003a3378bc565768fe5bdaf11",
"body": "Though there is a breaking bump in the dependencies since the v0.10.0\nrelease, the actual breaking change happened in the v0.9->v0.10 release.\n\nPut differently, anybody that would be affected by this dependency bump\nwould otherwise already have a failing build.",
"is_bot": false,
"headline": "Bump to v0.10.1",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2023-03-30T21:22:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d6945db1a0e2874eb510e0a2fb5c7082778eda6",
"body": "geo_types::Coordinate -> geo_types::Coord. Since Coord didn't exist\nuntil geo-types 0.7.8, we have to drop support for older versions, which\nis a breaking change in this case since we used to support geo-types 0.6",
"is_bot": false,
"headline": "854612f917e0d54746a6357e250131b0a1d76a28 switched from the deprecated",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2023-03-15T20:21:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b29e1937d7e22e492b44b78d5a483ee8a8e45223",
"body": null,
"is_bot": false,
"headline": "fix clippy",
"author_name": "Michael Kirk",
"author_login": "michaelkirk",
"committed_at": "2023-03-15T20:16:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "517ea13c277a7d023194856d9db4e59f00726f0c",
"body": null,
"is_bot": false,
"headline": "Move large polyline into separate folder",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-12T20:36:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "885153cdc662df01ebd91da8e1eb32282d7f63fb",
"body": null,
"is_bot": false,
"headline": "Fix and update benchmarks",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-12T18:51:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb2311eb5ef4578660be7d25e0adf46aaf85f14d",
"body": null,
"is_bot": false,
"headline": "More clippy fixes",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-12T18:48:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "91fc9f3de1004a92017a845b293a0bd8ad581f9f",
"body": "28: Restructures parsing logic for performance r=urschrei a=purew\n\n## Intro \r\n\r\nThis change removes the translation to `Vec<char>` inside of the loop which makes a massive difference in decoding performance.\r\n\r\nFurther, I modularized the code, similar to a [python-decoding library does it](https://g\n[…]\n.00%) high mild\r\n```\r\n\r\nThe large polyline decoding went from 78milliseconds to 20 _micro-seconds_!\n\nCo-authored-by: Anders Bennehag <anders@bennehag.com>\nCo-authored-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": true,
"headline": "Merge #28",
"author_name": "bors[bot]",
"author_login": "bors[bot]",
"committed_at": "2023-03-12T13:11:59Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f9a592ec1f2f1b44f244689e33d92945fe3116be",
"body": null,
"is_bot": false,
"headline": "Update changelog",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-12T13:10:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d17ed4d836e9cd6fc235ea6c32625c4ea3da634",
"body": "From https://github.com/georust/polyline/pull/28#discussion_r1070253969",
"is_bot": false,
"headline": "Implement new_index check suggestion",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-12T13:06:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2de3ed83c0452aa43ce0f510f7fef8ab24fb0e9a",
"body": null,
"is_bot": false,
"headline": "Adds another benchmark of a huge polyline",
"author_name": "Anders Bennehag",
"author_login": "purew",
"committed_at": "2023-03-12T12:51:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0ffe3da0ee8bdec0a498be016e20a375f99e9ff",
"body": "This change removes the translation to `Vec<char>` inside\nof the loop which makes a massive difference in decoding\nperformance.\n\nFurther, I modularized the code, similar to a [python-decoding\nlibrary does it](https://github.com/frederickjansen/polyline/blob/77893079ea38bfea3dc03135f94e2a27efffafbd/p\n[…]\n change: [-78.983% -78.787% -78.592%] (p = 0.00 < 0.05)\n Performance has improved.\nFound 1 outliers among 100 measurements (1.00%)\n 1 (1.00%) low mild\n```",
"is_bot": false,
"headline": "Restructures parsing logic for performance",
"author_name": "Anders Bennehag",
"author_login": "purew",
"committed_at": "2023-03-12T12:51:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1b39494767b02f0d973edb66428063c008217e7d",
"body": "30: Change to Coord, clippy fixes, dep updates r=urschrei a=urschrei\n\n\n\nCo-authored-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": true,
"headline": "Merge #30",
"author_name": "bors[bot]",
"author_login": "bors[bot]",
"committed_at": "2023-03-11T14:14:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "854612f917e0d54746a6357e250131b0a1d76a28",
"body": null,
"is_bot": false,
"headline": "Change to Coord, clippy fixes, dep updates",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2023-03-11T14:07:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "623301714e8187fd900d574c9e79d7d1e8f27e15",
"body": "25: Switch CI to Github r=urschrei a=urschrei\n\n\n\nCo-authored-by: Stephan Hügel <shugel@tcd.ie>",
"is_bot": true,
"headline": "Merge #25",
"author_name": "bors[bot]",
"author_login": "bors[bot]",
"committed_at": "2021-02-05T14:48:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "786d30b20f57a1d042b041d6c74454e3b8c35a7d",
"body": null,
"is_bot": false,
"headline": "Switch CI to Github",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2021-02-05T14:43:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0ce120a3a73931600402a15ce56eb24a7cc06b6d",
"body": "Update geo-types version requirements",
"is_bot": false,
"headline": "Merge pull request #23 from georust/build/geo-types",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2021-02-05T14:37:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "409e8e16f5f3960772736662dfc9ab1238c8ea2c",
"body": null,
"is_bot": false,
"headline": "bump version, update changelog",
"author_name": "pjsier",
"author_login": "pjsier",
"committed_at": "2021-02-04T22:20:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "225e6690b69dcf2a27371ca7f18ffd81681048ec",
"body": null,
"is_bot": false,
"headline": "update geo-types version requirements",
"author_name": "pjsier",
"author_login": "pjsier",
"committed_at": "2021-01-16T14:10:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b463e53ad4da5f87f660b4301c7054a1768f5a09",
"body": null,
"is_bot": false,
"headline": "Update changelog",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-06-23T15:59:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be4fc771bedf7d1400829c9c942017f24d040899",
"body": null,
"is_bot": false,
"headline": "Bump geo-types dependency",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-06-23T15:52:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f72698f7dc3ef23dcee69da76094b2c8c6ead573",
"body": null,
"is_bot": false,
"headline": "Update README",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-04-13T15:41:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "391818cbdd4eb53ec240572cad07e1335dd9ce1b",
"body": null,
"is_bot": false,
"headline": "Add note on coordinate order",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-04-13T15:38:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c86e4d216b35dd7d6c9c578acddbe439849b69b",
"body": null,
"is_bot": false,
"headline": "Version bump",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-04-13T13:45:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2bff59db02fd38907c6b83dc8196775c23ac2680",
"body": null,
"is_bot": false,
"headline": "Amend changelog",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-04-13T12:18:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abd3b1ce219d1020bd1149d86d20f5732fa5131a",
"body": "Bump dependency.",
"is_bot": false,
"headline": "Merge pull request #21 from peterbraden/patch-1",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2020-03-31T13:17:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "422a8f2325272ba43314573d08b9e6af8ce5c171",
"body": null,
"is_bot": false,
"headline": "Update Cargo.toml",
"author_name": "Peter Braden",
"author_login": "peterbraden",
"committed_at": "2020-03-31T10:52:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9a76d74a185ab6c3490bbe7a2f0fc1350014891",
"body": null,
"is_bot": false,
"headline": "Bump version",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2020-03-11T14:49:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02221833f6df6f36fafb65eb28933369109f6d6c",
"body": "20: Update geo-types dependency r=urschrei a=peterbraden\n\nAllow patches to the dependency.\r\n\r\n(It's currently 0.4.3)\n\nCo-authored-by: Peter Braden <peterbraden@peterbraden.co.uk>",
"is_bot": true,
"headline": "Merge #20",
"author_name": "bors[bot]",
"author_login": "bors[bot]",
"committed_at": "2020-03-11T14:42:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "733fb340285d7e63e5745682423e68141efd07f5",
"body": null,
"is_bot": false,
"headline": "Update Cargo.toml",
"author_name": "Peter Braden",
"author_login": "peterbraden",
"committed_at": "2020-03-10T10:30:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "261dec3bac245d09a15c31e7aaf74051344076d0",
"body": "Allow patches to the dependency.",
"is_bot": false,
"headline": "Update geo-types dependency",
"author_name": "Peter Braden",
"author_login": "peterbraden",
"committed_at": "2020-03-10T10:20:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6dd19eff7112966133773da54539e2a239bbeda4",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.7.0 release",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-09-30T03:20:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e5b4c444b37287020fb4912d6b4bfb22c7c94c8",
"body": "Reliense to MIT/Apache 2.",
"is_bot": false,
"headline": "Merge pull request #18 from georust/frewsxcv-relicense",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-09-30T03:18:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2efe3bad0b6d1819b940869d8d6e5fee37de039a",
"body": null,
"is_bot": false,
"headline": "Relnice to MIT/Apache 2.",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-09-30T03:13:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32b6d19668edc360628cc65639d61cc31e506a65",
"body": null,
"is_bot": false,
"headline": "Prepare for 0.6.0 release",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-09-27T01:18:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a19d1cd61c32312a2126d5dcedd2a65b8cc41738",
"body": "Switch to types from geo-types crate",
"is_bot": false,
"headline": "Merge pull request #16 from niclashoyer/geotypes",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-08-24T12:24:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b00d7d5d7b76b512d6bbff3fa8c4e0603093a2b",
"body": "Switch to criterion to enable stable benchmarks",
"is_bot": false,
"headline": "Merge pull request #15 from niclashoyer/stable-benchmarks",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-08-17T23:35:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21fae0915fb1f75538a910710c40d7ae9121287f",
"body": null,
"is_bot": false,
"headline": "Merge branch 'rounding_error' into geotypes",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-17T22:05:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90705bc2683656441ecab4a20ace79c68c823c09",
"body": null,
"is_bot": false,
"headline": "Fix rounding errors with coordinates close to each other",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-17T21:48:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a53cb57db6a9619ef97f5779d151c2a6c7d43bd",
"body": null,
"is_bot": false,
"headline": "Use types from geo_types crate",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-16T09:24:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "232154d65e4bf11d8b747295700e3c19faebc7ad",
"body": "This enables benchmarks on stable.",
"is_bot": false,
"headline": "Switch to criterion crate for benchmarks",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-15T22:29:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "acadf949764b5dd56d6d126c7361c55e4358402f",
"body": null,
"is_bot": false,
"headline": "Changed extern crate statements to edition",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-15T22:12:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7f29a16aad03c2941ee74ca76ceddf774a77d0f",
"body": null,
"is_bot": false,
"headline": "Changed edition to 2018",
"author_name": "Niclas Hoyer",
"author_login": "niclashoyer",
"committed_at": "2019-08-15T22:10:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97d4e70713b809a0d3ad50348ef51b459c10e233",
"body": "Mark `rand` as a dev-dependency.",
"is_bot": false,
"headline": "Merge pull request #12 from georust/frewsxcv-rand",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-02-16T23:37:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8694e3248a82e714de7de7f54c1f6291b05affb7",
"body": "Add crate docs",
"is_bot": false,
"headline": "Merge pull request #11 from kosticmarin/master",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-02-16T17:49:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "daf2629c54c293432fe1e1d6b6cd9215bf7453b1",
"body": null,
"is_bot": false,
"headline": "Crate docs remove second paragraph",
"author_name": "Marin Koštić",
"author_login": "kosticmarin",
"committed_at": "2019-02-13T17:23:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3360ee2193c402364279a6273ca47b742447f768",
"body": "It's only used in the benchmark",
"is_bot": false,
"headline": "Mark `rand` as a dev-dependency.",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2019-02-10T17:41:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75b71f90e75118c6a4f86485f0fecf521dae6616",
"body": null,
"is_bot": false,
"headline": "Add crate docs",
"author_name": "Marin Koštić",
"author_login": null,
"committed_at": "2019-02-08T15:26:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b303e62d482e025477f4fb70ba1a75506a65f1bb",
"body": null,
"is_bot": false,
"headline": "Add CoC from georust/geo.",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2018-08-11T16:15:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d88848980c755ed6860b40c445d79300d40f454",
"body": null,
"is_bot": false,
"headline": "Update repo URL/links to reflect change.",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2018-07-16T12:54:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc3a0d2be2fefe8fdf3513bde02a856116981460",
"body": null,
"is_bot": false,
"headline": "Update Changelog",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-03T11:05:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c031840217d37114963ffbf80f6d2f39fe77a1e",
"body": null,
"is_bot": false,
"headline": "Update rand dependency to a concrete version",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-02T00:18:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8771fbe8fcd889c24ba4d951f99dea60153382a3",
"body": "Address Clippy warnings, simplify loops",
"is_bot": false,
"headline": "Merge pull request #10 from urschrei/master",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-01T23:41:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9258306cd4abf7221e47714ea9fc482cf07710e",
"body": "It may be optimised away anyway, but there's no need to keep\nallocating like this in hot loops",
"is_bot": false,
"headline": "Re-use variable for current character",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-01T16:35:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dab6b942734ff80fa18b85f4a6d235cf87bf5d0",
"body": "The original worked because it ended with a boolean, but required a\nblank expression and is confusing to read. The new loop has a\nstraightforward termination condition.",
"is_bot": false,
"headline": "Replace confusing while loop with plain loop",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-01T16:19:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b65d44712276e45a9f67821ea0dcdb2a6752ae35",
"body": null,
"is_bot": false,
"headline": "Replace function param with less confusing name",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-01T15:53:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98402fa071f7d584bc3ce898995a83c59f679ca1",
"body": null,
"is_bot": false,
"headline": "Replace try! with ?",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-06-01T09:16:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14cc042a588a21ed90a514ced0b6d75f60b2520b",
"body": null,
"is_bot": false,
"headline": "Rustfmt pass",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-05-31T17:00:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbfef48ce1796170f6d8bf6a4d159f9e8630b56b",
"body": null,
"is_bot": false,
"headline": "Replace deprecated sampling method in benchmark",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-05-31T16:58:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "932d6c744992985fc2c0b65c49a811f710911888",
"body": "Primarily around potentially lossy conversions, but accepting &str in\ndecode_polyline also makes the API a lot nicer to use",
"is_bot": false,
"headline": "Address Clippy warnings",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-05-31T16:47:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4f29150e09a15dd70dd5285de28efe3b620f3879",
"body": null,
"is_bot": false,
"headline": "Use 100k lat, lon pairs in benchmark",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-05-31T16:47:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2cc150df2eafb1c04fa511ef23b5efa67914deb",
"body": null,
"is_bot": false,
"headline": "Add benchmark for coordinate encoding",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2018-05-31T16:47:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2901b0d53a604465e742796b961b9e347d9c7e5",
"body": "Fixes https://github.com/georust/rust-polyline/issues/6.",
"is_bot": false,
"headline": "Add link to docs.rs documentation. (#9)",
"author_name": "Corey Farwell",
"author_login": "frewsxcv",
"committed_at": "2016-09-18T18:02:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c4b86faefd5f57ada2b6bd409440edb60267bb3",
"body": null,
"is_bot": false,
"headline": "add secure token",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-25T17:23:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7fbbb788acb0d30c8d55f8a2480b210304d5cde",
"body": null,
"is_bot": false,
"headline": "Start travis-cargo integration",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-25T17:16:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ed7bcc073f0e0c35d338f859655e3652d34702c",
"body": null,
"is_bot": false,
"headline": "v0.4.0",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-17T21:31:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb740ec1cff822005458e516359bb08b6dcdbbcc",
"body": "* Accept Vec and slice arguments to encode_polyline\r\n\r\nThis is both more flexible and potentially more efficient,\r\nsince slices require a single pointer dereference, and Vecs require two.\r\n\r\n* Make docs clearer on slice/Vec passing",
"is_bot": false,
"headline": "Accept Vec and slice arguments to encode_polyline (#7)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2016-07-17T21:30:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10ff5e8cb34029025d772985fdcc299e980a2f54",
"body": null,
"is_bot": false,
"headline": "Start travis documentation deployment",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-14T15:17:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "432d2ca57df3b0f62612f35bf2f784aac9f1d074",
"body": null,
"is_bot": false,
"headline": "Fix repository path",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-13T22:39:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60ab71a4ef67a06bab11ee94c28f1e8086b141b7",
"body": null,
"is_bot": false,
"headline": "0.3.0",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-13T22:38:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55ac7aef342b72a1dd8cf02080e798058b0ea905",
"body": null,
"is_bot": false,
"headline": "Travis success. Fixes #5",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-13T22:37:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bfa8b2dd5e02ba6379259fda0f7ae05fb79cbeae",
"body": null,
"is_bot": false,
"headline": "Hook up travis",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-13T22:34:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7eb824b900e63f1d8c713729fd7322eee2fea517",
"body": "* Remove last of the unwrap() calls\r\n\r\n* Add a test for an invalid string\r\n\r\n* Add bounds checking functionality\r\n\r\nThere's no point in attempting to encode invalid latitude or longitude\r\ncoordinates. The function's error value is the input, which we're\r\nconverting to an informative error message.\r\n\n[…]\nd be to first check the values, and if the\r\nvector contains errors, to extract them and their positions into the Err. 🤔\r\n\r\n* Tidy up imports and trait bounds\r\n\r\n* Make lon and lat constants consistent",
"is_bot": false,
"headline": "Tests for invalid input strings, and bounds checks for coordinates (#4)",
"author_name": "Stephan Hügel",
"author_login": "urschrei",
"committed_at": "2016-07-13T22:29:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bd3965e1a84adcce6b23ad107993efc483bd2069",
"body": null,
"is_bot": false,
"headline": "Add crates badge",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-06T14:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e5038890c9a4940e15b14c447dc8bb88839257f",
"body": null,
"is_bot": false,
"headline": "v0.2.0",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-06T14:35:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ed6c8abd05186df92bb76150d9e55b33d7d9e82",
"body": "Basic error handling for en– and decoding",
"is_bot": false,
"headline": "Merge pull request #3 from urschrei/master",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-07-06T14:34:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9471be27d959f8060728b55c13eb606194541636",
"body": null,
"is_bot": false,
"headline": "Add node binding",
"author_name": "Tom MacWright",
"author_login": "tmcw",
"committed_at": "2016-06-21T22:22:25Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 10,
"commits_last_year": 1,
"latest_release_at": "2024-05-13T19:14:10Z",
"latest_release_tag": "v0.11.0",
"releases_from_tags": true,
"days_since_last_push": 360,
"active_weeks_last_year": 1,
"days_since_latest_release": 799,
"mean_days_between_releases": 318.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 62,
"has_issue_template": false,
"has_code_of_conduct": true,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "polyline",
"exists": true,
"license": "MIT/Apache-2.0",
"keywords": [
"geo",
"polyline",
"gis",
"science::geo"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/polyline",
"is_deprecated": false,
"latest_version": "0.11.0",
"repository_url": "https://github.com/georust/polyline",
"versions_count": 15,
"total_downloads": 408289,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 13634,
"first_published_at": "2016-06-21T17:47:28.056847Z",
"latest_published_at": "2024-05-13T19:15:26.586524Z",
"latest_version_yanked": false,
"days_since_latest_publish": 799
}
]
},
"popularity": {
"forks": 12,
"stars": 33,
"watchers": 5,
"fork_history": {
"days": [
{
"date": "2016-06-21",
"count": 1
},
{
"date": "2019-03-01",
"count": 1
},
{
"date": "2020-03-10",
"count": 1
},
{
"date": "2022-01-22",
"count": 1
},
{
"date": "2022-10-31",
"count": 1
},
{
"date": "2022-12-11",
"count": 1
},
{
"date": "2023-01-11",
"count": 1
},
{
"date": "2023-12-06",
"count": 1
},
{
"date": "2024-03-12",
"count": 1
},
{
"date": "2024-04-24",
"count": 1
},
{
"date": "2024-05-08",
"count": 1
},
{
"date": "2024-10-22",
"count": 1
}
],
"complete": true,
"collected": 12,
"total_forks": 12
},
"star_history": {
"days": [
{
"date": "2016-06-15",
"count": 1
},
{
"date": "2017-04-27",
"count": 1
},
{
"date": "2018-01-31",
"count": 1
},
{
"date": "2018-07-04",
"count": 1
},
{
"date": "2018-07-16",
"count": 1
},
{
"date": "2018-12-21",
"count": 1
},
{
"date": "2019-01-25",
"count": 1
},
{
"date": "2019-02-08",
"count": 1
},
{
"date": "2020-05-03",
"count": 1
},
{
"date": "2020-08-18",
"count": 1
},
{
"date": "2021-01-09",
"count": 1
},
{
"date": "2022-01-22",
"count": 1
},
{
"date": "2022-11-19",
"count": 1
},
{
"date": "2022-12-11",
"count": 1
},
{
"date": "2023-05-12",
"count": 1
},
{
"date": "2023-06-12",
"count": 1
},
{
"date": "2023-07-20",
"count": 1
},
{
"date": "2024-02-04",
"count": 1
},
{
"date": "2024-02-09",
"count": 1
},
{
"date": "2024-06-27",
"count": 1
},
{
"date": "2024-07-17",
"count": 1
},
{
"date": "2024-10-15",
"count": 2
},
{
"date": "2024-10-22",
"count": 1
},
{
"date": "2024-11-13",
"count": 1
},
{
"date": "2024-12-13",
"count": 1
},
{
"date": "2024-12-14",
"count": 1
},
{
"date": "2024-12-16",
"count": 1
},
{
"date": "2024-12-17",
"count": 1
},
{
"date": "2025-01-14",
"count": 1
},
{
"date": "2025-10-28",
"count": 1
},
{
"date": "2026-02-27",
"count": 1
},
{
"date": "2026-06-22",
"count": 1
}
],
"complete": true,
"collected": 33,
"total_stars": 33
},
"open_issues_and_prs": 6
},
"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": 10801,
"source_files_sampled": 3,
"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": 68,
"malicious_count": 0,
"assessed_package": "crates:polyline@0.11.0",
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "geo-types",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.7.8"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "geo-types",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "criterion",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "flexpolyline",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "rand",
"direct": false,
"version": null,
"ecosystem": "crates"
}
],
"collected": true,
"truncated": false,
"total_count": 4,
"direct_count": 1,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 34,
"open_issues": 4,
"closed_ratio": 0.714,
"closed_issues": 10,
"closed_unmerged_prs": 4
},
"bus_factor": 2,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "urschrei",
"commits": 40,
"avatar_url": "https://avatars.githubusercontent.com/u/131862?v=4"
},
{
"type": "User",
"login": "tmcw",
"commits": 26,
"avatar_url": "https://avatars.githubusercontent.com/u/32314?v=4"
},
{
"type": "User",
"login": "michaelkirk",
"commits": 15,
"avatar_url": "https://avatars.githubusercontent.com/u/217057?v=4"
},
{
"type": "User",
"login": "frewsxcv",
"commits": 14,
"avatar_url": "https://avatars.githubusercontent.com/u/416575?v=4"
},
{
"type": "User",
"login": "niclashoyer",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/175808?v=4"
},
{
"type": "User",
"login": "peterbraden",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/52586?v=4"
},
{
"type": "User",
"login": "purew",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/85910?v=4"
},
{
"type": "User",
"login": "pjsier",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/8291663?v=4"
},
{
"type": "User",
"login": "JosiahParry",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/13534508?v=4"
},
{
"type": "User",
"login": "kosticmarin",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/28999182?v=4"
}
],
"contributors_sampled": 11,
"top_contributor_share": 0.36
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"rust.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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "1 out of 17 merged PRs checked by a CI test -- score normalized to 0",
"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": 7,
"reason": "Found 17/24 approved changesets -- score normalized to 7",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 20 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": 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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": "7fc654d463a0a7a0b5c23bb4b2ba34b4ac60d73a",
"ran_at": "2026-07-22T08:25:32Z",
"aggregate_score": 4.1,
"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-04-14T03:58:46Z",
"oldest_open_prs": [
{
"number": 40,
"created_at": "2024-04-29T08:47:27Z",
"last_comment_at": "2025-04-04T15:54:44Z",
"last_comment_author": "mattiZed"
},
{
"number": 53,
"created_at": "2024-10-28T02:10:21Z",
"last_comment_at": "2025-07-26T12:03:28Z",
"last_comment_author": "ianthetechie"
}
],
"last_merged_pr_at": "2025-07-26T15:49:02Z",
"ci_last_conclusion": "FAILURE",
"oldest_open_issues": [
{
"number": 19,
"created_at": "2020-01-16T01:18:38Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 24,
"created_at": "2021-02-04T21:29:36Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 29,
"created_at": "2023-01-24T01:04:03Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 41,
"created_at": "2024-04-30T19:32:09Z",
"last_comment_at": "2024-05-01T15:57:33Z",
"last_comment_author": "michaelkirk"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/georust/polyline",
"host": "github.com",
"name": "polyline",
"owner": "georust"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"security": 53,
"vitality": 17,
"community": 57,
"governance": 71,
"engineering": 44
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 17,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 7,
"inputs": {
"commits_last_year": 1,
"human_commit_share": 0.96,
"days_since_last_push": 360,
"active_weeks_last_year": 1
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 360 days ago",
"points": 3.6,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 360
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "1/52 weeks with commits",
"points": 0.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 1
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "1 commits in the last year",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 1
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": 32,
"inputs": {
"releases_count": 10,
"latest_release_tag": "v0.11.0",
"releases_from_tags": true,
"days_since_latest_release": 799,
"mean_days_between_releases": 318.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "10 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 10
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 799 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 799
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~318.7 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 318.7
}
}
],
"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": "dormant",
"guards": [
"dependencies_clean"
],
"signals": [
"scorecard_unmaintained",
"broken_ci"
],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 2,
"unanswered_open_issues": 3,
"days_since_last_merged_pr": 360,
"days_since_last_human_commit": 360,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 360 days, with nothing left unanswered; held at dormant by no affected dependency",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_quiet",
"params": {
"days": 360
}
},
{
"code": "abandonment_guarded",
"params": {
"guards": "no affected dependency"
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 57,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "at_risk",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 36,
"inputs": {
"forks": 12,
"stars": 33,
"watchers": 5,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "below_threshold"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "33 stars",
"points": 24.4,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 33
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "12 forks",
"points": 8.7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 12
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "5 watchers",
"points": 3.3,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 5
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 72,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": true,
"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": "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": 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": "moderate",
"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": 69,
"inputs": {
"packages": [
"polyline"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 408289,
"monthly_downloads": 13634
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "13,634 downloads/month across crates",
"points": 55.1,
"status": "partial",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 13634,
"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": "good",
"name": "Sustainability & Governance",
"value": 71,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 63,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 11,
"top_contributor_share": 0.36
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 36% of commits",
"points": 14.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 36
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "11 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 11
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 20 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 78,
"inputs": {
"merged_prs": 34,
"open_issues": 4,
"closed_issues": 10,
"issue_closed_ratio": 0.714,
"closed_unmerged_prs": 4
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "71% of issues closed",
"points": 33.4,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 71
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "34/38 decided PRs merged",
"points": 34.2,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 34,
"decided": 38
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 17/24 approved changesets -- score normalized to 7",
"points": 10.5,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "good",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"followers": 890,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "georust",
"public_repos": 38,
"account_age_days": 4225
},
"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": "890 followers of georust",
"points": 21.2,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 890,
"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": "moderate",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"packages": [
"polyline"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 799
},
"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 799 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 799
}
}
],
"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": "at_risk",
"name": "Engineering Quality",
"value": 44,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"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": "1 out of 17 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 75,
"inputs": {
"topics": [
"polyline",
"polyline-decoder",
"polyline-encoder"
],
"has_wiki": true,
"homepage": "https://crates.io/crates/polyline",
"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/polyline",
"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": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 53,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "1 out of 17 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"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 17/24 approved changesets -- score normalized to 7",
"points": 5.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 20 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": "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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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:polyline@0.11.0 runtime dependency closure — what installing the published package pulls in — 68 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:polyline@0.11.0",
"assessed": 68
}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 68,
"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": 68,
"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": "at_risk",
"name": "AI Readiness",
"value": 36,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 21,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.385,
"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": "37 of 96 human commits state their intent (structured subject or explanatory body)",
"points": 20.6,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 37,
"sampled": 96
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 24,
"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,
"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": 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": "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": 10801,
"source_files_sampled": 3,
"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/3 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 3,
"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": [],
"report_type": "repository",
"generated_at": "2026-07-22T08:25:51.765523Z",
"schema_version": "0.26.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/georust/polyline.svg",
"full_name": "georust/polyline",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}