Informe JSON sin procesar legible por máquina
{
"data": {
"repo": {
"topics": [
"rust",
"regular-expression",
"static",
"compilation"
],
"is_fork": false,
"size_kb": 174,
"has_wiki": true,
"homepage": null,
"languages": {
"Rust": 55321
},
"pushed_at": "2026-07-29T05:35:42Z",
"created_at": "2019-10-07T16:50:30Z",
"owner_type": "User",
"updated_at": "2026-07-29T05:35:52Z",
"description": "lazy static regular expressions checked at compile time",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Rust",
"significant_languages": [
"Rust"
]
},
"owner": {
"blog": "https://dystroy.org",
"name": "Denys Séguret",
"type": "User",
"login": "Canop",
"company": null,
"location": "Lyon, France",
"followers": 734,
"avatar_url": "https://avatars.githubusercontent.com/u/617006?v=4",
"created_at": "2011-02-14T10:08:39Z",
"is_verified": null,
"public_repos": 174,
"account_age_days": 5645
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [],
"recent_commits": [
{
"oid": "36d0f60ba7e547f2568b2a8004e9ff12967f3605",
"body": null,
"is_bot": false,
"headline": "update CHANGELOG",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-07-29T05:35:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39a459c01e1ba2488075be50a821e2d72e466241",
"body": null,
"is_bot": false,
"headline": "version 3.6.1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-07-29T05:34:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7bfef5fda9a9e6690cf3b42425c24456f9b30068",
"body": null,
"is_bot": false,
"headline": "update changelog",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-07-27T18:40:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4febe883ff528132c74f040f3157a273f041c7e",
"body": null,
"is_bot": false,
"headline": "avoid unreachable warning in regex_switch",
"author_name": "Guflly",
"author_login": "Guflly",
"committed_at": "2026-07-27T18:25:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9245929f73083a7f659dcadc485659d78de11c6",
"body": null,
"is_bot": false,
"headline": "minor cleaning",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-02-11T09:26:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "692c46e624ad1e37d9587a99ca4ca12dae1bad26",
"body": null,
"is_bot": false,
"headline": "version 3.6.0 - MSRV 1.71",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-02-11T09:03:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4176ef47d06d6f2b7f9eef09a72d7864bda2fe0",
"body": null,
"is_bot": false,
"headline": "fix compilation with feature 'lite'",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-02-11T07:44:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "954df44d57f6116d104216b38e2c2fb6ae4aa2dc",
"body": "Those macros improve ergonomics of removing parts of strings but also avoid allocation when possible (i.e. when all the matches are either at the start or end of the string and what's kept is in only one piece).\n\n let input = \"154681string63731\";\n let output = regex_remove_all!(r\"\\d\", input);\n assert_eq!(output, \"string\");\n assert!(matches!(output, std::borrow::Cow::Borrowed(\"string\")));\n\nFix #45",
"is_bot": false,
"headline": "regex_remove_all! and bytes_regex_remove_all! (#46)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2026-02-11T07:41:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ed77f589c336eb6358c11827f21ea38a946c3b9",
"body": null,
"is_bot": false,
"headline": "version 3.5.1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-01-04T09:30:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c3c07dc9d142132c19e698b41180fa7d842085d",
"body": "Fix #43",
"is_bot": false,
"headline": "fix compilation with lite feature (#44)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2026-01-04T09:22:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e77d23525b05e6dd9634c4e3710189986558cd69",
"body": null,
"is_bot": false,
"headline": "version 3.5.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2026-01-02T11:41:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9282575e4c41b4bc72b71ea92d8f7b83366e252b",
"body": "Main bonus of `regex_remove!` and `bytes_regex_remove!` over replacing macros and functions is that no string is allocated unless the match in in the middle of the input.",
"is_bot": false,
"headline": "regex_remove! and bytes_regex_remove!",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2026-01-02T11:38:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "839adaf39f3ceaebdccf5685e9f09efe826b9061",
"body": null,
"is_bot": false,
"headline": "use fixed cradoc to fix links",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2025-12-21T15:30:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59e51fc13b0626e669981f244a390c7d447cc6c7",
"body": "* docs: remove spurious link",
"is_bot": false,
"headline": "docs: fix link (#41)",
"author_name": "iampi31415",
"author_login": "iampi31415",
"committed_at": "2025-12-19T10:12:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "027b93c05ca9afc88a9daafa8f2f89f289035809",
"body": null,
"is_bot": false,
"headline": "better readme using cradoc",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2025-11-14T21:52:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c22259fd5364b5bc2ef6a2324be1854525c185a",
"body": null,
"is_bot": false,
"headline": "doc formatting improvement",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2025-11-10T16:52:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1de9cef79c399b4553dbf7a90c76d00edc96cbc3",
"body": null,
"is_bot": false,
"headline": "improve doc",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2025-10-29T15:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2d702cfac919e05421de1b7851d9ce2a99b55ab",
"body": null,
"is_bot": false,
"headline": "version 3.4.1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-12-27T06:52:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddb4529808f363454fd7c371c6da9a1009d4e12d",
"body": null,
"is_bot": false,
"headline": "version 3.4.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-12-27T06:47:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "436977ce7a65528c9972eb476b65c2c80b8babf3",
"body": null,
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/main' into captures_iter",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-12-27T06:28:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0b5bdb702c33509485248246e1ac4b3d47786c7",
"body": "Fix #37",
"is_bot": false,
"headline": "regex_captures_iter! macro (#39)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2024-12-27T06:16:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6d6bbd7965483e859983cc321626f2bb3dac23e",
"body": "Fix #37",
"is_bot": false,
"headline": "regex_captures_iter! macro",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-12-24T14:50:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "210424249b73f79e5c77839ebc4c4aeade81916d",
"body": "The previous MSRV of 1.56 was a lie as no version of regex 1.9+\nwas compatible with it.",
"is_bot": false,
"headline": "Fix MSRV to 1.65 (because regex 1.9 asks for it)",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-12-10T12:46:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "914ae83047db365618cf1c5517dd0b3e1f741b9c",
"body": null,
"is_bot": false,
"headline": "version 3.3.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-08-23T14:00:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1bf2fd4dd6a9cb6a33ccd1ad682463fb29b94c39",
"body": null,
"is_bot": false,
"headline": "fix typo in readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-07-26T05:24:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ae0fca9b5e05af84206b38df46ac413f74e8db5",
"body": null,
"is_bot": false,
"headline": "version 3.2.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-07-25T07:32:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d508e245f6bc0c8b84c9d2a00f0c0376a9ff4910",
"body": "Those two macros allow conditional computation based on regex matching, with variables declared from the named capturing groups.\r\n\r\nOf course the regexes are lazy static and checked at compile time.\r\n\r\n# Example with `regex_if!`\r\n\r\n let s = \"gray(15)\";\r\n let gray = regex_if!(\r\n r#\n[…]\n\n r#\"^rgb\\((?<r>\\d+),\\s*(?<g>\\d+),\\s*(?<b>\\d+),?\\)$\"#i => Color::Rgb (\r\n r.parse()?,\r\n g.parse()?,\r\n b.parse()?,\r\n ),\r\n);\r\nassert_eq!(color, Some(Color::Rgb(1, 2, 3)));\r\n```",
"is_bot": false,
"headline": "Add regex_if! and regex_switch! (#35)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2024-07-25T07:26:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1eabf50a81543534f5618f0b0c0f5c1a8af88ec1",
"body": null,
"is_bot": false,
"headline": "fix typo",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-07-24T05:27:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ae6a40a7abda123be1471fcae0d297a26b4f998",
"body": null,
"is_bot": false,
"headline": "default-features instead of default_features",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2024-07-18T07:49:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4994c8bc240795f67ed6bc92686fda895fadae8c",
"body": null,
"is_bot": false,
"headline": "Add no_std support",
"author_name": "Tait Hoyem",
"author_login": "TTWNO",
"committed_at": "2024-07-14T03:07:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be9bbfa477d2619d8ba68561ee245abb81013310",
"body": "This crate is missing a repository link here: https://crates.io/crates/lazy-regex-proc_macros",
"is_bot": false,
"headline": "Add repository link (#33)",
"author_name": "Alexander Kjäll",
"author_login": "alexanderkjall",
"committed_at": "2024-04-01T13:54:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc1e0888ba501509b4d38ba4c30142625c651343",
"body": null,
"is_bot": false,
"headline": "version 3.1.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-11-09T17:21:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6677e0df77b0a0854a87e4f6cd8a21dc1e43620",
"body": "Fix #30",
"is_bot": false,
"headline": "add bytes_ prefixed macros for building bytes::Regex (#31)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2023-11-09T16:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "019daa3fb3c1023544153360951ab54168704f21",
"body": null,
"is_bot": false,
"headline": "version 3.0.2",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-09-12T07:04:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3cb087a644721626d76120aae7567104aa47a4c",
"body": "Fix #27",
"is_bot": false,
"headline": "Allow mut closure in replace macros (#28)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2023-09-12T07:02:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b7d88e8b13d481e4152335d32ca357c2a7f1fa8",
"body": null,
"is_bot": false,
"headline": "fix inconsistency in readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-09-06T14:33:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c9c320d82c2c69e982e427e2f1dd7cb86426592",
"body": null,
"is_bot": false,
"headline": "version 3.0.1 with syn 2.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-07-28T10:32:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2539cb1ad36bed485cc72425eb1e7b83d2e6ba5e",
"body": null,
"is_bot": false,
"headline": "[proc_macros] Update syn to 2.0",
"author_name": "Eduardo Pinho",
"author_login": "Enet4",
"committed_at": "2023-07-28T09:43:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9be3abc9ddecadfc59424054f156396085c30e14",
"body": "Enabling the \"lite\" feature:\r\n\r\n lazy-regex = { version = \"2.6.0\", default-features = false, features = [\"lite\"] }\r\n\r\nThis wins about 1.2MB on the final stripped binary size.",
"is_bot": false,
"headline": "\"lite\" feature to use regex-lite instead of regex (#22)",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2023-07-07T20:05:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38424d37f03546df0823a6eaf8521f6c1fd15b58",
"body": null,
"is_bot": false,
"headline": "version 2.5.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-03-09T13:06:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e27a609cbb5e9f5c877230b24b983b5d93056b7a",
"body": "replace! and replace_all! accept non closure replacers",
"is_bot": false,
"headline": "Merge pull request #20 from Canop/issue-19",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2023-03-09T11:41:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45612ad377bc4aa0dd89e9561430735a76935516",
"body": "Fix #19",
"is_bot": false,
"headline": "replace! and replace_all! accept non closure replacers",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-03-08T17:45:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "624945c89d6465818c24b664b1b299b92948e4a0",
"body": null,
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/main' into main",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-05T14:49:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "25b07020f32b4784cd5b984985c46aa0f67ae93f",
"body": null,
"is_bot": false,
"headline": "Create FUNDING.yml",
"author_name": "Denys Séguret",
"author_login": "Canop",
"committed_at": "2023-01-05T14:39:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ebcc6a7f87fafa8c9b591b25c056e36a7a64fd3",
"body": null,
"is_bot": false,
"headline": "version 2.4.1 - rustc minimum version down to 1.56",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-05T14:35:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35845b54907ca0668b36c6da7f4eeb2642aef67e",
"body": "and yank version 2.3.2\n\nFix #17 (partially at least)",
"is_bot": false,
"headline": "update to minor 2.4.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-04T12:28:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40142b17baa78826ab0befb6d22f75e41a65c357",
"body": null,
"is_bot": false,
"headline": "version 2.3.2",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-03T10:58:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "197987674221f06a66386ce4927c701091b82cfb",
"body": null,
"is_bot": false,
"headline": "upgrade regex to 1.7",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-03T10:55:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eda81b84cc348c558338d4705103894e7ef27d0d",
"body": null,
"is_bot": false,
"headline": "clearer doc with compile_fail",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2023-01-03T10:52:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4013e4cc57d98d42d65a67eef5bc2fb988d56861",
"body": "Fix #16",
"is_bot": false,
"headline": "allow building with --no-default-features",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-11-05T14:24:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f4520b63c042ae056883b848f2ae71a4173091c5",
"body": null,
"is_bot": false,
"headline": "version 2.3.1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-11-04T06:29:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f862c149b0fd0df51b991cb281640a11ed268fe",
"body": null,
"is_bot": false,
"headline": "Merge branch 'necauqua-pretty-errors' into main",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-11-03T19:10:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d3ad8d45e4fdb71cdda9ad151d502e789386967",
"body": null,
"is_bot": false,
"headline": "upgrade syn version to have LitStr#token()",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-11-03T19:09:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "482e15cc1d5ed1b9a2393e8de7be05f91af4c840",
"body": null,
"is_bot": false,
"headline": "preparing version 2.3.1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-11-03T18:56:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cf75dba7c0aaf1435d648f1052b52466349f84d9",
"body": null,
"is_bot": false,
"headline": "Use spanned error for the regex flag as well",
"author_name": "Anton Bulakh",
"author_login": "necauqua",
"committed_at": "2022-11-03T18:25:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9107b6791fb148f490b6cbb5514ff11fa2ff5f32",
"body": null,
"is_bot": false,
"headline": "Use spanned errors instead of panics",
"author_name": "Anton Bulakh",
"author_login": "necauqua",
"committed_at": "2022-11-02T01:01:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8b2995851951c936007e085890c98322fc04e43",
"body": null,
"is_bot": false,
"headline": "fix typo in changelog",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-03-09T16:25:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c80ecca371cc031e574dfc14f208c7104e54e208",
"body": null,
"is_bot": false,
"headline": "version 2.3.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-03-05T19:41:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ca89ce4fb05c2073e87506c79e1ef35f6d03009",
"body": null,
"is_bot": false,
"headline": "changelog entry for bytes regex support",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2022-03-05T14:57:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a3d210ecbbe9175ff19ac6a595a53a8a4bf0e09",
"body": "This is a draft that works but lacks docs, tests, review etc.\n\n- Added `B` flag for `regex::bytes::Regex` variant\n- Changed `RegexCode` to detect flag and build corresponding token stream at creation\n- Added convenience methods to shorten macro implementations\n- Split generation code into smaller pieces",
"is_bot": false,
"headline": "Add `regex::bytes::Regex` support",
"author_name": "Blair Noctis",
"author_login": "nc7s",
"committed_at": "2022-03-04T01:41:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a36b9ff6c3466e44aed487a51fe696c671112fea",
"body": null,
"is_bot": false,
"headline": "version 2.2.2",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-10-20T13:29:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "69a1b0eb8489d0f4a099bdd4cde90aca13ec33dc",
"body": null,
"is_bot": false,
"headline": "version 2.2.2",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-10-20T13:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a70109b246ba292d6ccb38916179e4c33e98b5cc",
"body": null,
"is_bot": false,
"headline": "Expose cargo features from the regex crate",
"author_name": "Max Bruckner",
"author_login": "FSMaxB",
"committed_at": "2021-10-20T11:32:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef49e6a112a5b7667174fd26778ec33065022df6",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-09-09T14:24:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0b46e1e290e212ef63e50285a7dc37d24d5af562",
"body": "I really should automate the copy from lib.rs to readme.md...",
"is_bot": false,
"headline": "fix readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-08T20:02:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca2e5cc571a202b701a837c1ae7cdd3cb25f6426",
"body": null,
"is_bot": false,
"headline": "regex_replace!",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-07T15:29:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca97192064544487449fe59f4ab4e77abcda991a",
"body": null,
"is_bot": false,
"headline": "code splitted",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-07T10:07:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f65101beab19bad943783291c482df0058f4574",
"body": null,
"is_bot": false,
"headline": "rustfmt",
"author_name": "Dominic",
"author_login": "msrd0",
"committed_at": "2021-06-06T22:04:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c0d90e5933ee3ef167f1a11e93a77115e1ce015",
"body": null,
"is_bot": false,
"headline": "re-export all necessary types from the regex crate",
"author_name": "Dominic",
"author_login": "msrd0",
"committed_at": "2021-06-06T22:04:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1444bc14c9c068d862707a7321fcb9de0b0b2eb3",
"body": "Fix #7",
"is_bot": false,
"headline": "add the regex_replace_all macro",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-04T16:22:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eed1977953cba325baf3aae658e53ca4627819e0",
"body": null,
"is_bot": false,
"headline": "Introduce the `regex_replace_all` macro",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-04T14:49:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9c3117b0e161632a0b9e45544ea81102112daaee",
"body": null,
"is_bot": false,
"headline": "add the lazy_regex macro returning a Lazy<Regex>",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-06-02T11:00:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ace80ee968d3ccb7ff80fdd2ba521cc83913e966",
"body": null,
"is_bot": false,
"headline": "package version 2.0.2",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-31T07:26:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b910e045b3fb130af2e725f314aeb30a3662ebc2",
"body": null,
"is_bot": false,
"headline": "use the original name for lazy-regex-proc_macros",
"author_name": "AlephAlpha",
"author_login": "AlephAlpha",
"committed_at": "2021-05-31T06:21:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a380485e0b735694ddc7268f08d52cfe33493154",
"body": null,
"is_bot": false,
"headline": "improved documentation",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-20T11:37:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09ddeb95f5f4ff5ee3cdc8436339d34b10c3a8d0",
"body": null,
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/master'",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-18T19:47:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "08937031c2737b2c437c925213789227dfa34562",
"body": null,
"is_bot": false,
"headline": "precision in readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-18T19:46:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ee1f3f672906111c163f10774310ee21d320020",
"body": "Fix typo in README.md",
"is_bot": false,
"headline": "Merge pull request #4 from jplatte/patch-1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-18T08:19:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "691e73286fb6a9ee7289c3202b5e61d3359144c0",
"body": null,
"is_bot": false,
"headline": "Fix typo in README.md",
"author_name": "Jonas Platte",
"author_login": "jplatte",
"committed_at": "2021-05-18T08:18:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa6b8c8ccd785acdec0f705845e5ccf73380e03b",
"body": null,
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/master'",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T11:00:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "190c7ddfcf19f321648595c4e5f6de8edc0a1d3b",
"body": "Add rust annotation to readme code blocks",
"is_bot": false,
"headline": "Merge pull request #2 from jamesmunns/patch-1",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T10:59:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da4ddb4204299931b85fbba80492d244c935e9bf",
"body": null,
"is_bot": false,
"headline": "clarity of readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T10:59:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40bfdc6acfd23eeff0fa4d5f23c3083c708bed5e",
"body": "This allows for syntax highlighting on your main readme page.",
"is_bot": false,
"headline": "Add rust annotation to readme code blocks",
"author_name": "James Munns",
"author_login": "jamesmunns",
"committed_at": "2021-05-17T10:58:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7229f96cfecf3e5705b95ad085dda54748c6bba1",
"body": null,
"is_bot": false,
"headline": "shield the readme",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T09:57:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98cb3c3f22365b5a7f2f7df4fb3accc07ba69586",
"body": null,
"is_bot": false,
"headline": "add missing manifest things",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T09:53:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1a9fe9076410af478142687339d0707b8edd55e",
"body": null,
"is_bot": false,
"headline": "compile-time check of regexes, utility macros",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-17T09:51:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d42a5182b91b0d9d92e7d747bf7eddbd249d1e10",
"body": "Fix #1",
"is_bot": false,
"headline": "make import of other crates not necessary anymore, use once_cell",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-08T08:30:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d1b179afde4b018ab525c456d37c57c54307627",
"body": "New features, if any, will go in 1.x",
"is_bot": false,
"headline": "no reason not to be in 1.0.0",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2021-05-04T18:39:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "99dda685880fde8de31084a9b646a399d6d51dec",
"body": null,
"is_bot": false,
"headline": "add lib level documentation",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2020-07-10T06:38:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c34e1c902fbd56ecf14f0c9a8b80f3e939e3ff9b",
"body": "so that it's not necessary to do it outside",
"is_bot": false,
"headline": "import regex::Regex inside the macro call",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2020-05-18T15:27:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1f98694ba87c1b566ad9e6a411bae805b4a43106",
"body": null,
"is_bot": false,
"headline": "add repository to manifest",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2019-10-07T20:05:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5c24575d99c3d629b6e0721e9c60b2ee039de252",
"body": null,
"is_bot": false,
"headline": "remove dependency to the regex crate",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2019-10-07T20:02:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea9344caa8104b9481609f46259a5fdbd89748a4",
"body": null,
"is_bot": false,
"headline": "initial commit",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2019-10-07T19:28:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "97a05cd6051e554c432c0d266bf95f5045ca0ef6",
"body": null,
"is_bot": false,
"headline": "Initial commit",
"author_name": "Canop",
"author_login": "Canop",
"committed_at": "2019-10-07T16:50:30Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 0,
"commits_last_year": 17,
"latest_release_at": null,
"latest_release_tag": null,
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 7,
"days_since_latest_release": null,
"mean_days_between_releases": null
},
"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": "lazy-regex",
"exists": true,
"license": "MIT",
"keywords": [
"macro",
"lazy",
"static",
"regex",
"text-processing"
],
"ecosystem": "crates",
"matches_repo": true,
"registry_url": "https://crates.io/crates/lazy-regex",
"is_deprecated": false,
"latest_version": "3.6.1",
"repository_url": "https://github.com/Canop/lazy-regex",
"versions_count": 33,
"total_downloads": 37118137,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": 2236001,
"first_published_at": "2019-10-07T19:29:04.522883Z",
"latest_published_at": "2026-07-29T05:35:34.196263Z",
"latest_version_yanked": false,
"days_since_latest_publish": 1
}
]
},
"popularity": {
"forks": 17,
"stars": 227,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2021-05-17",
"count": 1
},
{
"date": "2021-05-20",
"count": 1
},
{
"date": "2021-10-20",
"count": 1
},
{
"date": "2022-01-17",
"count": 1
},
{
"date": "2022-04-25",
"count": 1
},
{
"date": "2023-03-05",
"count": 1
},
{
"date": "2023-07-28",
"count": 1
},
{
"date": "2023-09-24",
"count": 1
},
{
"date": "2023-11-06",
"count": 1
},
{
"date": "2024-02-03",
"count": 1
},
{
"date": "2024-04-01",
"count": 1
},
{
"date": "2024-07-14",
"count": 1
},
{
"date": "2024-08-03",
"count": 1
},
{
"date": "2024-12-09",
"count": 1
},
{
"date": "2025-04-30",
"count": 1
},
{
"date": "2025-07-08",
"count": 1
},
{
"date": "2026-07-27",
"count": 1
}
],
"complete": true,
"collected": 17,
"total_forks": 17
},
"star_history": null,
"open_issues_and_prs": 6
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Cargo.toml",
"examples/regexes/Cargo.toml",
"src/proc_macros/Cargo.toml"
],
"largest_source_bytes": 20511,
"source_files_sampled": 10,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Cargo.toml"
],
"advisories": {
"error": "No resolved dependencies carried a version and a supported ecosystem",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 7,
"direct_affected_count": 0
},
"ecosystems": [
"crates"
],
"dependencies": [
{
"name": "once_cell",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.21"
},
{
"name": "regex",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "1.13"
},
{
"name": "regex-lite",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "0.1"
},
{
"name": "lazy-regex-proc_macros",
"manifest": "Cargo.toml",
"ecosystem": "crates",
"version_constraint": "3.6.1"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "lazy-regex-proc_macros",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "once_cell",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "regex",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "regex-lite",
"direct": true,
"version": null,
"ecosystem": "crates"
},
{
"name": "proc-macro2",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "quote",
"direct": false,
"version": null,
"ecosystem": "crates"
},
{
"name": "syn",
"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": 22,
"open_issues": 5,
"closed_ratio": 0.792,
"closed_issues": 19,
"closed_unmerged_prs": 1
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "Canop",
"commits": 80,
"avatar_url": "https://avatars.githubusercontent.com/u/617006?v=4"
},
{
"type": "User",
"login": "necauqua",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/33968278?v=4"
},
{
"type": "User",
"login": "msrd0",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/7853372?v=4"
},
{
"type": "User",
"login": "AlephAlpha",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/3600593?v=4"
},
{
"type": "User",
"login": "alexanderkjall",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/647710?v=4"
},
{
"type": "User",
"login": "nc7s",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/4474501?v=4"
},
{
"type": "User",
"login": "Enet4",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/4738426?v=4"
},
{
"type": "User",
"login": "Guflly",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/145608489?v=4"
},
{
"type": "User",
"login": "jamesmunns",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/2097964?v=4"
},
{
"type": "User",
"login": "jplatte",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/951129?v=4"
}
],
"contributors_sampled": 13,
"top_contributor_share": 0.851
},
"quality_signals": {
"has_ci": false,
"has_tests": true,
"ci_workflows": [],
"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": 0,
"reason": "0 out of 8 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": 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": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"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": 4,
"reason": "4 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 4",
"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": null,
"reason": "no dependencies found",
"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": null,
"reason": "No tokens found",
"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": "36d0f60ba7e547f2568b2a8004e9ff12967f3605",
"ran_at": "2026-07-30T20:43:21Z",
"aggregate_score": 3,
"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-29T05:35:43Z",
"oldest_open_prs": [
{
"number": 38,
"created_at": "2024-12-10T12:31:52Z",
"last_comment_at": "2025-01-30T12:29:08Z",
"last_comment_author": "EdJoPaTo"
}
],
"last_merged_pr_at": "2026-07-27T18:41:02Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 10,
"created_at": "2022-01-16T19:04:18Z",
"last_comment_at": "2025-01-24T06:04:15Z",
"last_comment_author": "Canop"
},
{
"number": 25,
"created_at": "2023-08-02T13:22:52Z",
"last_comment_at": "2023-09-06T17:15:51Z",
"last_comment_author": "Canop"
},
{
"number": 26,
"created_at": "2023-09-03T00:12:29Z",
"last_comment_at": "2023-09-03T06:42:28Z",
"last_comment_author": "SichangHe"
},
{
"number": 29,
"created_at": "2023-09-22T13:02:05Z",
"last_comment_at": "2025-01-23T06:28:54Z",
"last_comment_author": "Canop"
},
{
"number": 47,
"created_at": "2026-07-16T07:04:21Z",
"last_comment_at": "2026-07-16T08:34:01Z",
"last_comment_author": "Canop"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/Canop/lazy-regex",
"host": "github.com",
"name": "lazy-regex",
"owner": "Canop"
},
"metrics": {
"overall": {
"key": "overall",
"band": "weak",
"name": "Overall health",
"note": "The weighted overall 46 is calibrated to 44 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 46,
"calibrated": 44,
"calibration": "2026-08-02"
}
}
],
"value": 44,
"inputs": {
"security": 30,
"vitality": 34,
"community": 62,
"governance": 64,
"calibration": "2026-08-02",
"engineering": 38,
"ai_readiness": 44,
"weighted_overall_raw": 46
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "at_risk",
"name": "Vitality",
"value": 34,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 56,
"inputs": {
"commits_last_year": 17,
"human_commit_share": 1,
"days_since_last_push": 1,
"active_weeks_last_year": 7
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "17 commits in the last year",
"points": 11.3,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 17
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "4 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 4",
"points": 4,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "critical",
"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": 1,
"inputs": {
"releases_count": 0
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "no releases published",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_releases_published",
"params": {}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "no releases",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_releases",
"params": {}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "no releases",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_releases",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "exceptional",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 4,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 4 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 4
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 62,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 48,
"inputs": {
"forks": 17,
"stars": 227,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "227 stars",
"points": 38.2,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 227
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "17 forks",
"points": 10,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 17
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"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 (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"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": "exceptional",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 100,
"inputs": {
"packages": [
"lazy-regex"
],
"dependents": null,
"ecosystems": "crates",
"total_downloads": 37118137,
"monthly_downloads": 2236001
},
"components": [
{
"key": "monthly_downloads",
"name": "Monthly downloads",
"detail": "2,236,001 downloads/month across crates",
"points": 80,
"status": "met",
"details": [
{
"code": "downloads_monthly",
"params": {
"count": 2236001,
"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.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "at_risk",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 26,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 13,
"top_contributor_share": 0.851
},
"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 85% of commits",
"points": 3.4,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 85
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "13 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 13
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 73,
"inputs": {
"merged_prs": 22,
"open_issues": 5,
"closed_issues": 19,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.792,
"closed_unmerged_prs": 1,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "79% of issues closed",
"points": 33.3,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 79
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "22/23 decided PRs merged",
"points": 28.7,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 22,
"decided": 23
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"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": "good",
"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": 70,
"inputs": {
"followers": 734,
"owner_type": "User",
"is_verified": null,
"owner_login": "Canop",
"public_repos": 174,
"account_age_days": 5645
},
"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": "734 followers of Canop",
"points": 20.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 734,
"login": "Canop"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "174 public repos, account ~15 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 174
}
},
{
"code": "account_age_years",
"params": {
"years": 15
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"lazy-regex"
],
"ecosystems": "crates",
"any_deprecated": false,
"min_days_since_publish": 1
},
"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 1 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "33 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 33
}
}
],
"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": "weak",
"name": "Engineering Quality",
"value": 38,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "at_risk",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_ci": false,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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": "0 out of 8 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"topics": [
"rust",
"regular-expression",
"static",
"compilation"
],
"has_wiki": true,
"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": "4 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 4
}
}
],
"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": "at_risk",
"name": "Security",
"value": 30,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 30,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 13,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 5,
"scorecard_aggregate": 3
},
"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": "0 out of 8 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 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 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "4 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 4",
"points": 3,
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"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": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 9
},
"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": "weak",
"name": "AI Readiness",
"value": 44,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 8,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.16,
"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": "15 of 94 human commits state their intent (structured subject or explanatory body)",
"points": 8.5,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 15,
"sampled": 94
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 51,
"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",
"examples/regexes/Cargo.toml",
"src/proc_macros/Cargo.toml"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Cargo.toml, examples/regexes/Cargo.toml, src/proc_macros/Cargo.toml (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Cargo.toml, examples/regexes/Cargo.toml, src/proc_macros/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 94",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 94
}
}
],
"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": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Rust",
"largest_source_bytes": 20511,
"source_files_sampled": 10,
"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/10 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 10,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:crates",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token",
"deps.dev does not index crates:lazy-regex@3.6.1; advisories assessed against the repository dependency graph instead",
"No resolved dependencies carried a version and a supported ecosystem"
],
"report_type": "repository",
"generated_at": "2026-07-30T20:43:34.615692Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/c/Canop/lazy-regex.svg",
"full_name": "Canop/lazy-regex",
"license_state": "standard",
"license_spdx": "MIT"
}